diff --git a/app/pages/404.wrn b/app/pages/404.wrn index 61158d96..1ec54f63 100644 --- a/app/pages/404.wrn +++ b/app/pages/404.wrn @@ -7,10 +7,10 @@ page Pagenotfound { view {
-
W WRNexusJS
+
W WRNexusJS
- +
} diff --git a/app/pages/access.wrn b/app/pages/access.wrn index 070c8e91..f99bae3e 100644 --- a/app/pages/access.wrn +++ b/app/pages/access.wrn @@ -7,10 +7,10 @@ page Access { view {
-
W WRNexusJS
+
W WRNexusJS
-

Request preview access

WRNexusJS 0.2.68 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.

Request process

  1. Contact WorkRoot through the public contact path at workroot.in.
  2. Describe the application, team, expected deployment, and Bun environment.
  3. After approval, follow the registry instructions supplied privately.
  4. Use the canonical scaffold command below only after authentication.
bunx @wrnexus/cli@0.2.68 create my-app

Access approval, response time, licensing terms, and support level remain owner-controlled. This site does not collect access requests directly.

- +

Request preview access

WRNexusJS 0.2.69 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.

Request process

  1. Contact WorkRoot through the public contact path at workroot.in.
  2. Describe the application, team, expected deployment, and Bun environment.
  3. After approval, follow the registry instructions supplied privately.
  4. Use the canonical scaffold command below only after authentication.
bunx @wrnexus/cli@0.2.69 create my-app

Access approval, response time, licensing terms, and support level remain owner-controlled. This site does not collect access requests directly.

+
} diff --git a/app/pages/architecture.wrn b/app/pages/architecture.wrn index 58d2b22d..aec93d13 100644 --- a/app/pages/architecture.wrn +++ b/app/pages/architecture.wrn @@ -7,10 +7,10 @@ page Architecture { view {
-
W WRNexusJS
+
W WRNexusJS
-
Framework architecture · 0.2.68

Architecture

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.

Request and build lifecycle

  1. DiscoverPages, APIs, middleware, components, layouts, schemas, rooms
  2. CompileParse .wrn, validate grammar, generate server code
  3. RequestLimits, security, locale, session, middleware
  4. MatchStatic and dynamic file route
  5. RenderSSR data, escaped interpolation, components, metadata
  6. EnhanceOnly required reactive/directive runtimes

Package boundaries

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.

Security and data flow

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.

Realtime and scale

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.

Workspaces and gateways

The gateway can dispatch multiple applications while preserving route, component, asset, config, and session boundaries. Validate host routing and isolation before production.

Build and deployment

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

Mobile compatibility bridges SSR-safe Capacitor capabilities; native route generation is experimental and is not general web portability. Test each target platform.

Generated files and limits

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.

- +
Framework architecture · 0.2.69

Architecture

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.

Request and build lifecycle

  1. DiscoverPages, APIs, middleware, components, layouts, schemas, rooms
  2. CompileParse .wrn, validate grammar, generate server code
  3. RequestLimits, security, locale, session, middleware
  4. MatchStatic and dynamic file route
  5. RenderSSR data, escaped interpolation, components, metadata
  6. EnhanceOnly required reactive/directive runtimes

Package boundaries

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.

Security and data flow

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.

Realtime and scale

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.

Workspaces and gateways

The gateway can dispatch multiple applications while preserving route, component, asset, config, and session boundaries. Validate host routing and isolation before production.

Build and deployment

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

Mobile compatibility bridges SSR-safe Capacitor capabilities; native route generation is experimental and is not general web portability. Test each target platform.

Generated files and limits

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.

+
} diff --git a/app/pages/benchmarks.wrn b/app/pages/benchmarks.wrn index b507d70d..69b61021 100644 --- a/app/pages/benchmarks.wrn +++ b/app/pages/benchmarks.wrn @@ -7,10 +7,10 @@ page Benchmarks { view {
-
W WRNexusJS
+
W WRNexusJS

Benchmarks

No publishable benchmark dataset yet

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.

- +
} diff --git a/app/pages/changelog.wrn b/app/pages/changelog.wrn index 16837bbc..10b72960 100644 --- a/app/pages/changelog.wrn +++ b/app/pages/changelog.wrn @@ -7,10 +7,10 @@ page Changelog { view {
-
W WRNexusJS
+
W WRNexusJS
-

Changelog

0.2.68 2026-07-13

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.

Migration notes

Run wrnexus update --latest and keep every @wrnexus/* package on 0.2.68. Existing applications must explicitly add @wrnexus/helpers before importing it; newly scaffolded applications include it automatically.

Versioning and support

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.

- +

Changelog

0.2.69 2026-07-13

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.

Migration notes

Run wrnexus update --latest and keep every @wrnexus/* package on 0.2.69. Existing applications must explicitly add @wrnexus/helpers before importing it; newly scaffolded applications include it automatically.

Versioning and support

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.

+
} diff --git a/app/pages/components.wrn b/app/pages/components.wrn index 0f36e93a..57521104 100644 --- a/app/pages/components.wrn +++ b/app/pages/components.wrn @@ -12,7 +12,7 @@ page Components {
W WRNexusJS - +
@wrnexus/ui · 901 components

Component reference

Production-ready, server-rendered components documented directly from the installed .wrn sources.

Showing {category} components

actions

AcceptAllCookiesButton

Reusable accept all cookies button component.

6 props1 slots0 events
View component →
@@ -916,7 +916,7 @@ page Components { content

WorkspaceSwitcher

Reusable workspace switcher component.

8 props1 slots0 events
View component →
forms

YearPicker

Reusable year picker component.

11 props1 slots0 events
View component →
content

ZoomSlider

Reusable zoom slider component.

8 props1 slots0 events
View component →
- + } diff --git a/app/pages/components/accept-all-cookies-button.wrn b/app/pages/components/accept-all-cookies-button.wrn index 33fd3a5e..20810464 100644 --- a/app/pages/components/accept-all-cookies-button.wrn +++ b/app/pages/components/accept-all-cookies-button.wrn @@ -10,10 +10,10 @@ page AcceptAllCookiesButtoncomponent {
W WRNexusJS - +
-
actions component

AcceptAllCookiesButton

Reusable accept all cookies button component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AcceptAllCookiesButton
+      
actions component

AcceptAllCookiesButton

Reusable accept all cookies button component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AcceptAllCookiesButton
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page AcceptAllCookiesButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/accessible-accordion.wrn b/app/pages/components/accessible-accordion.wrn index 9b4cf819..2f61ce3b 100644 --- a/app/pages/components/accessible-accordion.wrn +++ b/app/pages/components/accessible-accordion.wrn @@ -10,10 +10,10 @@ page AccessibleAccordioncomponent {
W WRNexusJS - +
-
content component

AccessibleAccordion

Reusable accessible accordion component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AccessibleAccordion
+      
content component

AccessibleAccordion

Reusable accessible accordion component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AccessibleAccordion
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page AccessibleAccordioncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/accessible-carousel.wrn b/app/pages/components/accessible-carousel.wrn index e5a41cec..63d7dfa5 100644 --- a/app/pages/components/accessible-carousel.wrn +++ b/app/pages/components/accessible-carousel.wrn @@ -10,10 +10,10 @@ page AccessibleCarouselcomponent {
W WRNexusJS - +
-
content component

AccessibleCarousel

Reusable accessible carousel component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AccessibleCarousel
+      
content component

AccessibleCarousel

Reusable accessible carousel component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AccessibleCarousel
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page AccessibleCarouselcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/accessible-chart-summary.wrn b/app/pages/components/accessible-chart-summary.wrn index f9e44601..964ee6f4 100644 --- a/app/pages/components/accessible-chart-summary.wrn +++ b/app/pages/components/accessible-chart-summary.wrn @@ -10,10 +10,10 @@ page AccessibleChartSummarycomponent {
W WRNexusJS - +
-
content component

AccessibleChartSummary

Reusable accessible chart summary component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AccessibleChartSummary
+      
content component

AccessibleChartSummary

Reusable accessible chart summary component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AccessibleChartSummary
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -54,7 +54,7 @@ page AccessibleChartSummarycomponent {
     }
 }
 
- + } diff --git a/app/pages/components/accessible-dialog.wrn b/app/pages/components/accessible-dialog.wrn index c3b2b269..9dc8c2b2 100644 --- a/app/pages/components/accessible-dialog.wrn +++ b/app/pages/components/accessible-dialog.wrn @@ -10,10 +10,10 @@ page AccessibleDialogcomponent {
W WRNexusJS - +
-
overlays component

AccessibleDialog

Reusable accessible dialog component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AccessibleDialog
+      
overlays component

AccessibleDialog

Reusable accessible dialog component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AccessibleDialog
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page AccessibleDialogcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/accessible-error-summary.wrn b/app/pages/components/accessible-error-summary.wrn index bb1ebc2d..73b348bc 100644 --- a/app/pages/components/accessible-error-summary.wrn +++ b/app/pages/components/accessible-error-summary.wrn @@ -10,10 +10,10 @@ page AccessibleErrorSummarycomponent {
W WRNexusJS - +
-
content component

AccessibleErrorSummary

Reusable accessible error summary component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AccessibleErrorSummary
+      
content component

AccessibleErrorSummary

Reusable accessible error summary component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AccessibleErrorSummary
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page AccessibleErrorSummarycomponent {
     }
 }
 
- + } diff --git a/app/pages/components/accessible-icon.wrn b/app/pages/components/accessible-icon.wrn index 232cf50d..d6fecc86 100644 --- a/app/pages/components/accessible-icon.wrn +++ b/app/pages/components/accessible-icon.wrn @@ -10,10 +10,10 @@ page AccessibleIconcomponent {
W WRNexusJS - +
-
content component

AccessibleIcon

Reusable accessible icon component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AccessibleIcon
+      
content component

AccessibleIcon

Reusable accessible icon component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AccessibleIcon
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page AccessibleIconcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/accessible-menu.wrn b/app/pages/components/accessible-menu.wrn index 88c59f8f..96f86476 100644 --- a/app/pages/components/accessible-menu.wrn +++ b/app/pages/components/accessible-menu.wrn @@ -10,10 +10,10 @@ page AccessibleMenucomponent {
W WRNexusJS - +
-
overlays component

AccessibleMenu

Reusable accessible menu component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AccessibleMenu
+      
overlays component

AccessibleMenu

Reusable accessible menu component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AccessibleMenu
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page AccessibleMenucomponent {
     }
 }
 
- + } diff --git a/app/pages/components/accessible-tabs.wrn b/app/pages/components/accessible-tabs.wrn index ac9c05e1..4c6ca794 100644 --- a/app/pages/components/accessible-tabs.wrn +++ b/app/pages/components/accessible-tabs.wrn @@ -10,10 +10,10 @@ page AccessibleTabscomponent {
W WRNexusJS - +
-
content component

AccessibleTabs

Reusable accessible tabs component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AccessibleTabs
+      
content component

AccessibleTabs

Reusable accessible tabs component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AccessibleTabs
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page AccessibleTabscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/accessible-tooltip.wrn b/app/pages/components/accessible-tooltip.wrn index bb46cb4d..d84e90c6 100644 --- a/app/pages/components/accessible-tooltip.wrn +++ b/app/pages/components/accessible-tooltip.wrn @@ -10,10 +10,10 @@ page AccessibleTooltipcomponent {
W WRNexusJS - +
-
content component

AccessibleTooltip

Reusable accessible tooltip component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AccessibleTooltip
+      
content component

AccessibleTooltip

Reusable accessible tooltip component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AccessibleTooltip
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page AccessibleTooltipcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/accordion.wrn b/app/pages/components/accordion.wrn index 221614da..f19aa497 100644 --- a/app/pages/components/accordion.wrn +++ b/app/pages/components/accordion.wrn @@ -10,10 +10,10 @@ page Accordioncomponent {
W WRNexusJS - +
-
content component

Accordion

Reusable accordion component.

@wrnexus/ui 0.2.683 props1 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Accordion
+      
content component

Accordion

Reusable accordion component.

@wrnexus/ui 0.2.693 props1 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Accordion
   title="Question"
   open="false"
 />

Legacy mount name: data-component="Accordion".

Props and attributes

PropTypeRequirementDefault
classstringOptional""
titlestringOptional"Question"
openbooleanOptionalfalse

Slots

  • default

Events

  • click

Source contract

Installed source: components/Accordion.wrn

component Accordion {
@@ -48,7 +48,7 @@ page Accordioncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/account-menu.wrn b/app/pages/components/account-menu.wrn index c67e2a97..256adc7c 100644 --- a/app/pages/components/account-menu.wrn +++ b/app/pages/components/account-menu.wrn @@ -10,10 +10,10 @@ page AccountMenucomponent {
W WRNexusJS - +
-
overlays component

AccountMenu

Reusable account menu component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AccountMenu
+      
overlays component

AccountMenu

Reusable account menu component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AccountMenu
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page AccountMenucomponent {
     }
 }
 
- + } diff --git a/app/pages/components/account-status-banner.wrn b/app/pages/components/account-status-banner.wrn index 67b1386d..c1141afc 100644 --- a/app/pages/components/account-status-banner.wrn +++ b/app/pages/components/account-status-banner.wrn @@ -10,10 +10,10 @@ page AccountStatusBannercomponent {
W WRNexusJS - +
-
feedback component

AccountStatusBanner

Reusable account status banner component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AccountStatusBanner
+      
feedback component

AccountStatusBanner

Reusable account status banner component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AccountStatusBanner
   label="AccountStatus"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page AccountStatusBannercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/action-menu.wrn b/app/pages/components/action-menu.wrn index 5f3f20e1..9057328c 100644 --- a/app/pages/components/action-menu.wrn +++ b/app/pages/components/action-menu.wrn @@ -10,10 +10,10 @@ page ActionMenucomponent {
W WRNexusJS - +
-
overlays component

ActionMenu

Reusable action menu component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ActionMenu
+      
overlays component

ActionMenu

Reusable action menu component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ActionMenu
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page ActionMenucomponent {
     }
 }
 
- + } diff --git a/app/pages/components/active-filter-list.wrn b/app/pages/components/active-filter-list.wrn index 2509f72a..44a158f5 100644 --- a/app/pages/components/active-filter-list.wrn +++ b/app/pages/components/active-filter-list.wrn @@ -10,10 +10,10 @@ page ActiveFilterListcomponent {
W WRNexusJS - +
-
data component

ActiveFilterList

Reusable active filter list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ActiveFilterList
+      
data component

ActiveFilterList

Reusable active filter list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ActiveFilterList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page ActiveFilterListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/activity-list.wrn b/app/pages/components/activity-list.wrn index dec8fd07..03da7f9e 100644 --- a/app/pages/components/activity-list.wrn +++ b/app/pages/components/activity-list.wrn @@ -10,10 +10,10 @@ page ActivityListcomponent {
W WRNexusJS - +
-
data component

ActivityList

Reusable activity list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ActivityList
+      
data component

ActivityList

Reusable activity list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ActivityList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page ActivityListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/add-on-card.wrn b/app/pages/components/add-on-card.wrn index 1548fb98..e730affe 100644 --- a/app/pages/components/add-on-card.wrn +++ b/app/pages/components/add-on-card.wrn @@ -10,10 +10,10 @@ page AddOnCardcomponent {
W WRNexusJS - +
-
content component

AddOnCard

Reusable add on card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AddOnCard
+      
content component

AddOnCard

Reusable add on card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AddOnCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page AddOnCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/address-input.wrn b/app/pages/components/address-input.wrn index f6d1d62e..0a144383 100644 --- a/app/pages/components/address-input.wrn +++ b/app/pages/components/address-input.wrn @@ -10,10 +10,10 @@ page AddressInputcomponent {
W WRNexusJS - +
-
forms component

AddressInput

Reusable address input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AddressInput
+      
forms component

AddressInput

Reusable address input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AddressInput
   label="Address"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page AddressInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/address-preview.wrn b/app/pages/components/address-preview.wrn index 0705e616..aa5a033c 100644 --- a/app/pages/components/address-preview.wrn +++ b/app/pages/components/address-preview.wrn @@ -10,10 +10,10 @@ page AddressPreviewcomponent {
W WRNexusJS - +
-
content component

AddressPreview

Reusable address preview component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AddressPreview
+      
content component

AddressPreview

Reusable address preview component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AddressPreview
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page AddressPreviewcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/advanced-filter-builder.wrn b/app/pages/components/advanced-filter-builder.wrn index 925885db..33d6b4f1 100644 --- a/app/pages/components/advanced-filter-builder.wrn +++ b/app/pages/components/advanced-filter-builder.wrn @@ -10,10 +10,10 @@ page AdvancedFilterBuildercomponent {
W WRNexusJS - +
-
content component

AdvancedFilterBuilder

Reusable advanced filter builder component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AdvancedFilterBuilder
+      
content component

AdvancedFilterBuilder

Reusable advanced filter builder component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AdvancedFilterBuilder
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page AdvancedFilterBuildercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/alert-dialog.wrn b/app/pages/components/alert-dialog.wrn index a356e1d8..4d0db94d 100644 --- a/app/pages/components/alert-dialog.wrn +++ b/app/pages/components/alert-dialog.wrn @@ -10,10 +10,10 @@ page AlertDialogcomponent {
W WRNexusJS - +
-
overlays component

AlertDialog

Reusable alert dialog component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AlertDialog
+      
overlays component

AlertDialog

Reusable alert dialog component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AlertDialog
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page AlertDialogcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/alert.wrn b/app/pages/components/alert.wrn index 42f69823..c7927919 100644 --- a/app/pages/components/alert.wrn +++ b/app/pages/components/alert.wrn @@ -10,10 +10,10 @@ page Alertcomponent {
W WRNexusJS - +
-
feedback component

Alert

Reusable alert component.

@wrnexus/ui 0.2.685 props1 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Alert
+      
feedback component

Alert

Reusable alert component.

@wrnexus/ui 0.2.695 props1 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Alert
   title="Notice"
   description="description"
   variant="info"
@@ -62,7 +62,7 @@ page Alertcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/amount-input.wrn b/app/pages/components/amount-input.wrn index 2ef722ee..6c8b8ad4 100644 --- a/app/pages/components/amount-input.wrn +++ b/app/pages/components/amount-input.wrn @@ -10,10 +10,10 @@ page AmountInputcomponent {
W WRNexusJS - +
-
forms component

AmountInput

Reusable amount input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AmountInput
+      
forms component

AmountInput

Reusable amount input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AmountInput
   label="Amount"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page AmountInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/analytics-dashboard-preview.wrn b/app/pages/components/analytics-dashboard-preview.wrn index bb0c6992..bc420711 100644 --- a/app/pages/components/analytics-dashboard-preview.wrn +++ b/app/pages/components/analytics-dashboard-preview.wrn @@ -10,10 +10,10 @@ page AnalyticsDashboardPreviewcomponent {
W WRNexusJS - +
-
content component

AnalyticsDashboardPreview

Reusable analytics dashboard preview component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AnalyticsDashboardPreview
+      
content component

AnalyticsDashboardPreview

Reusable analytics dashboard preview component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AnalyticsDashboardPreview
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -81,7 +81,7 @@ page AnalyticsDashboardPreviewcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/anchor-navigation.wrn b/app/pages/components/anchor-navigation.wrn index 586f3409..2e926d3b 100644 --- a/app/pages/components/anchor-navigation.wrn +++ b/app/pages/components/anchor-navigation.wrn @@ -10,10 +10,10 @@ page AnchorNavigationcomponent {
W WRNexusJS - +
-
layout component

AnchorNavigation

Reusable anchor navigation component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AnchorNavigation
+      
layout component

AnchorNavigation

Reusable anchor navigation component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AnchorNavigation
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page AnchorNavigationcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/announcement-bar.wrn b/app/pages/components/announcement-bar.wrn index 9e5b7116..e70d4fd3 100644 --- a/app/pages/components/announcement-bar.wrn +++ b/app/pages/components/announcement-bar.wrn @@ -10,10 +10,10 @@ page AnnouncementBarcomponent {
W WRNexusJS - +
-
core component

AnnouncementBar

Reusable announcement bar component.

@wrnexus/ui 0.2.687 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AnnouncementBar
+      
core component

AnnouncementBar

Reusable announcement bar component.

@wrnexus/ui 0.2.697 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AnnouncementBar
   badge="New"
   message="WRNexusJS Organizations is now available."
   description="Build secure multi-tenant applications with teams, roles, domains, and enterprise SSO."
@@ -115,7 +115,7 @@ page AnnouncementBarcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/apartment-input.wrn b/app/pages/components/apartment-input.wrn index df8dd3f9..10be027d 100644 --- a/app/pages/components/apartment-input.wrn +++ b/app/pages/components/apartment-input.wrn @@ -10,10 +10,10 @@ page ApartmentInputcomponent {
W WRNexusJS - +
-
forms component

ApartmentInput

Reusable apartment input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApartmentInput
+      
forms component

ApartmentInput

Reusable apartment input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApartmentInput
   label="Apartment"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page ApartmentInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/api-authentication-notice.wrn b/app/pages/components/api-authentication-notice.wrn index c698f011..6a7d3ebf 100644 --- a/app/pages/components/api-authentication-notice.wrn +++ b/app/pages/components/api-authentication-notice.wrn @@ -10,10 +10,10 @@ page ApiAuthenticationNoticecomponent {
W WRNexusJS - +
-
feedback component

ApiAuthenticationNotice

Reusable api authentication notice component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiAuthenticationNotice
+      
feedback component

ApiAuthenticationNotice

Reusable api authentication notice component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiAuthenticationNotice
   label="ApiAuthentication"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ApiAuthenticationNoticecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/api-endpoint-card.wrn b/app/pages/components/api-endpoint-card.wrn index 62b5f39e..974e121c 100644 --- a/app/pages/components/api-endpoint-card.wrn +++ b/app/pages/components/api-endpoint-card.wrn @@ -10,10 +10,10 @@ page ApiEndpointCardcomponent {
W WRNexusJS - +
-
content component

ApiEndpointCard

Reusable api endpoint card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiEndpointCard
+      
content component

ApiEndpointCard

Reusable api endpoint card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiEndpointCard
   method="GET"
   path="/api/example"
   eyebrow="eyebrow"
@@ -61,7 +61,7 @@ page ApiEndpointCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/api-error-example.wrn b/app/pages/components/api-error-example.wrn index 26210bdf..6b856570 100644 --- a/app/pages/components/api-error-example.wrn +++ b/app/pages/components/api-error-example.wrn @@ -10,10 +10,10 @@ page ApiErrorExamplecomponent {
W WRNexusJS - +
-
content component

ApiErrorExample

Reusable api error example component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiErrorExample
+      
content component

ApiErrorExample

Reusable api error example component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiErrorExample
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ApiErrorExamplecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/api-header-table.wrn b/app/pages/components/api-header-table.wrn index b5f868a5..7e2e1200 100644 --- a/app/pages/components/api-header-table.wrn +++ b/app/pages/components/api-header-table.wrn @@ -10,10 +10,10 @@ page ApiHeaderTablecomponent {
W WRNexusJS - +
-
data component

ApiHeaderTable

Reusable api header table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiHeaderTable
+      
data component

ApiHeaderTable

Reusable api header table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiHeaderTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page ApiHeaderTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/api-key-create-dialog.wrn b/app/pages/components/api-key-create-dialog.wrn index 9dca6113..0ef0c496 100644 --- a/app/pages/components/api-key-create-dialog.wrn +++ b/app/pages/components/api-key-create-dialog.wrn @@ -10,10 +10,10 @@ page ApiKeyCreateDialogcomponent {
W WRNexusJS - +
-
overlays component

ApiKeyCreateDialog

Reusable api key create dialog component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiKeyCreateDialog
+      
overlays component

ApiKeyCreateDialog

Reusable api key create dialog component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiKeyCreateDialog
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page ApiKeyCreateDialogcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/api-key-display.wrn b/app/pages/components/api-key-display.wrn index d2727e1f..634ab537 100644 --- a/app/pages/components/api-key-display.wrn +++ b/app/pages/components/api-key-display.wrn @@ -10,10 +10,10 @@ page ApiKeyDisplaycomponent {
W WRNexusJS - +
-
content component

ApiKeyDisplay

Reusable api key display component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiKeyDisplay
+      
content component

ApiKeyDisplay

Reusable api key display component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiKeyDisplay
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ApiKeyDisplaycomponent {
     }
 }
 
- + } diff --git a/app/pages/components/api-key-input.wrn b/app/pages/components/api-key-input.wrn index 310b2bdc..3a7a3312 100644 --- a/app/pages/components/api-key-input.wrn +++ b/app/pages/components/api-key-input.wrn @@ -10,10 +10,10 @@ page ApiKeyInputcomponent {
W WRNexusJS - +
-
forms component

ApiKeyInput

Reusable api key input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiKeyInput
+      
forms component

ApiKeyInput

Reusable api key input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiKeyInput
   label="ApiKey"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page ApiKeyInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/api-method-badge.wrn b/app/pages/components/api-method-badge.wrn index 8c792440..3edf27ca 100644 --- a/app/pages/components/api-method-badge.wrn +++ b/app/pages/components/api-method-badge.wrn @@ -10,10 +10,10 @@ page ApiMethodBadgecomponent {
W WRNexusJS - +
-
feedback component

ApiMethodBadge

Reusable api method badge component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiMethodBadge
+      
feedback component

ApiMethodBadge

Reusable api method badge component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiMethodBadge
   label="ApiMethod"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ApiMethodBadgecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/api-parameter-table.wrn b/app/pages/components/api-parameter-table.wrn index a2f3bcd0..223e325c 100644 --- a/app/pages/components/api-parameter-table.wrn +++ b/app/pages/components/api-parameter-table.wrn @@ -10,10 +10,10 @@ page ApiParameterTablecomponent {
W WRNexusJS - +
-
data component

ApiParameterTable

Reusable api parameter table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiParameterTable
+      
data component

ApiParameterTable

Reusable api parameter table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiParameterTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page ApiParameterTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/api-rate-limit-notice.wrn b/app/pages/components/api-rate-limit-notice.wrn index dbbdd46b..713b778e 100644 --- a/app/pages/components/api-rate-limit-notice.wrn +++ b/app/pages/components/api-rate-limit-notice.wrn @@ -10,10 +10,10 @@ page ApiRateLimitNoticecomponent {
W WRNexusJS - +
-
feedback component

ApiRateLimitNotice

Reusable api rate limit notice component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiRateLimitNotice
+      
feedback component

ApiRateLimitNotice

Reusable api rate limit notice component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiRateLimitNotice
   label="ApiRateLimit"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ApiRateLimitNoticecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/api-request-example.wrn b/app/pages/components/api-request-example.wrn index c04c36b6..70cb7445 100644 --- a/app/pages/components/api-request-example.wrn +++ b/app/pages/components/api-request-example.wrn @@ -10,10 +10,10 @@ page ApiRequestExamplecomponent {
W WRNexusJS - +
-
content component

ApiRequestExample

Reusable api request example component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiRequestExample
+      
content component

ApiRequestExample

Reusable api request example component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiRequestExample
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ApiRequestExamplecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/api-response-example.wrn b/app/pages/components/api-response-example.wrn index 4a314b2f..9472e7db 100644 --- a/app/pages/components/api-response-example.wrn +++ b/app/pages/components/api-response-example.wrn @@ -10,10 +10,10 @@ page ApiResponseExamplecomponent {
W WRNexusJS - +
-
content component

ApiResponseExample

Reusable api response example component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiResponseExample
+      
content component

ApiResponseExample

Reusable api response example component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiResponseExample
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ApiResponseExamplecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/api-schema-table.wrn b/app/pages/components/api-schema-table.wrn index b10ac4ff..b96619ca 100644 --- a/app/pages/components/api-schema-table.wrn +++ b/app/pages/components/api-schema-table.wrn @@ -10,10 +10,10 @@ page ApiSchemaTablecomponent {
W WRNexusJS - +
-
data component

ApiSchemaTable

Reusable api schema table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiSchemaTable
+      
data component

ApiSchemaTable

Reusable api schema table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiSchemaTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page ApiSchemaTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/api-schema-viewer.wrn b/app/pages/components/api-schema-viewer.wrn index 8de06097..4816354c 100644 --- a/app/pages/components/api-schema-viewer.wrn +++ b/app/pages/components/api-schema-viewer.wrn @@ -10,10 +10,10 @@ page ApiSchemaViewercomponent {
W WRNexusJS - +
-
content component

ApiSchemaViewer

Reusable api schema viewer component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiSchemaViewer
+      
content component

ApiSchemaViewer

Reusable api schema viewer component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiSchemaViewer
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ApiSchemaViewercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/api-version-badge.wrn b/app/pages/components/api-version-badge.wrn index 7544fb26..0e3511da 100644 --- a/app/pages/components/api-version-badge.wrn +++ b/app/pages/components/api-version-badge.wrn @@ -10,10 +10,10 @@ page ApiVersionBadgecomponent {
W WRNexusJS - +
-
feedback component

ApiVersionBadge

Reusable api version badge component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiVersionBadge
+      
feedback component

ApiVersionBadge

Reusable api version badge component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ApiVersionBadge
   label="ApiVersion"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ApiVersionBadgecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/app-header.wrn b/app/pages/components/app-header.wrn index a7b7fec3..75794167 100644 --- a/app/pages/components/app-header.wrn +++ b/app/pages/components/app-header.wrn @@ -10,10 +10,10 @@ page AppHeadercomponent {
W WRNexusJS - +
-
layout component

AppHeader

Reusable app header component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AppHeader
+      
layout component

AppHeader

Reusable app header component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AppHeader
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page AppHeadercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/architecture-section.wrn b/app/pages/components/architecture-section.wrn index 3aa724a4..c1eb53ac 100644 --- a/app/pages/components/architecture-section.wrn +++ b/app/pages/components/architecture-section.wrn @@ -10,10 +10,10 @@ page ArchitectureSectioncomponent {
W WRNexusJS - +
-
layout component

ArchitectureSection

Reusable architecture section component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ArchitectureSection
+      
layout component

ArchitectureSection

Reusable architecture section component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ArchitectureSection
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ArchitectureSectioncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/area-chart.wrn b/app/pages/components/area-chart.wrn index 17b0d556..511991a7 100644 --- a/app/pages/components/area-chart.wrn +++ b/app/pages/components/area-chart.wrn @@ -10,10 +10,10 @@ page AreaChartcomponent {
W WRNexusJS - +
-
visualization component

AreaChart

Reusable area chart component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AreaChart
+      
visualization component

AreaChart

Reusable area chart component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AreaChart
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page AreaChartcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/article-hero.wrn b/app/pages/components/article-hero.wrn index d3b68d65..8cff067e 100644 --- a/app/pages/components/article-hero.wrn +++ b/app/pages/components/article-hero.wrn @@ -10,10 +10,10 @@ page ArticleHerocomponent {
W WRNexusJS - +
-
layout component

ArticleHero

Reusable article hero component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ArticleHero
+      
layout component

ArticleHero

Reusable article hero component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ArticleHero
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ArticleHerocomponent {
     }
 }
 
- + } diff --git a/app/pages/components/article-layout.wrn b/app/pages/components/article-layout.wrn index c5cb1f9a..cdf8bb37 100644 --- a/app/pages/components/article-layout.wrn +++ b/app/pages/components/article-layout.wrn @@ -10,10 +10,10 @@ page ArticleLayoutcomponent {
W WRNexusJS - +
-
layout component

ArticleLayout

Reusable article layout component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ArticleLayout
+      
layout component

ArticleLayout

Reusable article layout component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ArticleLayout
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ArticleLayoutcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/article-newsletter-cta.wrn b/app/pages/components/article-newsletter-cta.wrn index 3030c39a..86fb3b07 100644 --- a/app/pages/components/article-newsletter-cta.wrn +++ b/app/pages/components/article-newsletter-cta.wrn @@ -10,10 +10,10 @@ page ArticleNewsletterCTAcomponent {
W WRNexusJS - +
-
actions component

ArticleNewsletterCTA

Reusable article newsletter c t a component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ArticleNewsletterCTA
+      
actions component

ArticleNewsletterCTA

Reusable article newsletter c t a component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ArticleNewsletterCTA
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page ArticleNewsletterCTAcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/article-page-shell.wrn b/app/pages/components/article-page-shell.wrn index 1f357ad8..d3237f43 100644 --- a/app/pages/components/article-page-shell.wrn +++ b/app/pages/components/article-page-shell.wrn @@ -10,10 +10,10 @@ page ArticlePageShellcomponent {
W WRNexusJS - +
-
layout component

ArticlePageShell

Reusable article page shell component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ArticlePageShell
+      
layout component

ArticlePageShell

Reusable article page shell component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ArticlePageShell
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ArticlePageShellcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/article-share-actions.wrn b/app/pages/components/article-share-actions.wrn index e3a245f3..1f83a437 100644 --- a/app/pages/components/article-share-actions.wrn +++ b/app/pages/components/article-share-actions.wrn @@ -10,10 +10,10 @@ page ArticleShareActionscomponent {
W WRNexusJS - +
-
actions component

ArticleShareActions

Reusable article share actions component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ArticleShareActions
+      
actions component

ArticleShareActions

Reusable article share actions component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ArticleShareActions
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page ArticleShareActionscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/aspect-ratio.wrn b/app/pages/components/aspect-ratio.wrn index b6842786..fed96fa6 100644 --- a/app/pages/components/aspect-ratio.wrn +++ b/app/pages/components/aspect-ratio.wrn @@ -10,10 +10,10 @@ page AspectRatiocomponent {
W WRNexusJS - +
-
core component

AspectRatio

Reusable aspect ratio component.

@wrnexus/ui 0.2.681 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AspectRatio />

Legacy mount name: data-component="AspectRatio".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/AspectRatio.wrn

component AspectRatio {
+      
core component

AspectRatio

Reusable aspect ratio component.

@wrnexus/ui 0.2.691 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AspectRatio />

Legacy mount name: data-component="AspectRatio".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/AspectRatio.wrn

component AspectRatio {
   props {
     class = ""
   }
@@ -24,7 +24,7 @@ page AspectRatiocomponent {
     }
 }
 
- + } diff --git a/app/pages/components/asset-card.wrn b/app/pages/components/asset-card.wrn index 78a5ab6e..a9820559 100644 --- a/app/pages/components/asset-card.wrn +++ b/app/pages/components/asset-card.wrn @@ -10,10 +10,10 @@ page AssetCardcomponent {
W WRNexusJS - +
-
content component

AssetCard

Reusable asset card component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AssetCard
+      
content component

AssetCard

Reusable asset card component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AssetCard
   title="title"
   description="description"
   href="href"
@@ -36,7 +36,7 @@ page AssetCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/attachment-picker.wrn b/app/pages/components/attachment-picker.wrn index 6307b1ed..cb0234bc 100644 --- a/app/pages/components/attachment-picker.wrn +++ b/app/pages/components/attachment-picker.wrn @@ -10,10 +10,10 @@ page AttachmentPickercomponent {
W WRNexusJS - +
-
forms component

AttachmentPicker

Reusable attachment picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AttachmentPicker
+      
forms component

AttachmentPicker

Reusable attachment picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AttachmentPicker
   label="Attachment"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page AttachmentPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/attachment-upload.wrn b/app/pages/components/attachment-upload.wrn index 00efa41a..f9fd0e65 100644 --- a/app/pages/components/attachment-upload.wrn +++ b/app/pages/components/attachment-upload.wrn @@ -10,10 +10,10 @@ page AttachmentUploadcomponent {
W WRNexusJS - +
-
content component

AttachmentUpload

Reusable attachment upload component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AttachmentUpload
+      
content component

AttachmentUpload

Reusable attachment upload component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AttachmentUpload
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page AttachmentUploadcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/audio-upload.wrn b/app/pages/components/audio-upload.wrn index eff5d701..a3ca243b 100644 --- a/app/pages/components/audio-upload.wrn +++ b/app/pages/components/audio-upload.wrn @@ -10,10 +10,10 @@ page AudioUploadcomponent {
W WRNexusJS - +
-
content component

AudioUpload

Reusable audio upload component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AudioUpload
+      
content component

AudioUpload

Reusable audio upload component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AudioUpload
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page AudioUploadcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/audit-log-preview.wrn b/app/pages/components/audit-log-preview.wrn index bda99978..90906d41 100644 --- a/app/pages/components/audit-log-preview.wrn +++ b/app/pages/components/audit-log-preview.wrn @@ -10,10 +10,10 @@ page AuditLogPreviewcomponent {
W WRNexusJS - +
-
content component

AuditLogPreview

Reusable audit log preview component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AuditLogPreview
+      
content component

AuditLogPreview

Reusable audit log preview component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AuditLogPreview
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page AuditLogPreviewcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/audit-table.wrn b/app/pages/components/audit-table.wrn index 94f23eee..21f57366 100644 --- a/app/pages/components/audit-table.wrn +++ b/app/pages/components/audit-table.wrn @@ -10,10 +10,10 @@ page AuditTablecomponent {
W WRNexusJS - +
-
data component

AuditTable

Reusable audit table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AuditTable
+      
data component

AuditTable

Reusable audit table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AuditTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page AuditTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/authenticator-code-input.wrn b/app/pages/components/authenticator-code-input.wrn index 3c7db615..a207e003 100644 --- a/app/pages/components/authenticator-code-input.wrn +++ b/app/pages/components/authenticator-code-input.wrn @@ -10,10 +10,10 @@ page AuthenticatorCodeInputcomponent {
W WRNexusJS - +
-
forms component

AuthenticatorCodeInput

Reusable authenticator code input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AuthenticatorCodeInput
+      
forms component

AuthenticatorCodeInput

Reusable authenticator code input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AuthenticatorCodeInput
   label="AuthenticatorCode"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page AuthenticatorCodeInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/author-avatar.wrn b/app/pages/components/author-avatar.wrn index f9c14a3b..1ea22109 100644 --- a/app/pages/components/author-avatar.wrn +++ b/app/pages/components/author-avatar.wrn @@ -10,10 +10,10 @@ page AuthorAvatarcomponent {
W WRNexusJS - +
-
content component

AuthorAvatar

Reusable author avatar component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AuthorAvatar
+      
content component

AuthorAvatar

Reusable author avatar component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AuthorAvatar
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page AuthorAvatarcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/author-card.wrn b/app/pages/components/author-card.wrn index 680f53e0..ff68ec56 100644 --- a/app/pages/components/author-card.wrn +++ b/app/pages/components/author-card.wrn @@ -10,10 +10,10 @@ page AuthorCardcomponent {
W WRNexusJS - +
-
content component

AuthorCard

Reusable author card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AuthorCard
+      
content component

AuthorCard

Reusable author card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AuthorCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page AuthorCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/authorized-application-card.wrn b/app/pages/components/authorized-application-card.wrn index a7ddc2a2..5920e71f 100644 --- a/app/pages/components/authorized-application-card.wrn +++ b/app/pages/components/authorized-application-card.wrn @@ -10,10 +10,10 @@ page AuthorizedApplicationCardcomponent {
W WRNexusJS - +
-
content component

AuthorizedApplicationCard

Reusable authorized application card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AuthorizedApplicationCard
+      
content component

AuthorizedApplicationCard

Reusable authorized application card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AuthorizedApplicationCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page AuthorizedApplicationCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/auto-grid.wrn b/app/pages/components/auto-grid.wrn index 2bdfb3d9..c50dceef 100644 --- a/app/pages/components/auto-grid.wrn +++ b/app/pages/components/auto-grid.wrn @@ -10,10 +10,10 @@ page AutoGridcomponent {
W WRNexusJS - +
-
data component

AutoGrid

Reusable auto grid component.

@wrnexus/ui 0.2.681 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AutoGrid />

Legacy mount name: data-component="AutoGrid".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/AutoGrid.wrn

component AutoGrid {
+      
data component

AutoGrid

Reusable auto grid component.

@wrnexus/ui 0.2.691 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AutoGrid />

Legacy mount name: data-component="AutoGrid".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/AutoGrid.wrn

component AutoGrid {
   props {
     class = ""
   }
@@ -24,7 +24,7 @@ page AutoGridcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/automation-example-card.wrn b/app/pages/components/automation-example-card.wrn index 51fdd52a..a5bdd7db 100644 --- a/app/pages/components/automation-example-card.wrn +++ b/app/pages/components/automation-example-card.wrn @@ -10,10 +10,10 @@ page AutomationExampleCardcomponent {
W WRNexusJS - +
-
content component

AutomationExampleCard

Reusable automation example card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AutomationExampleCard
+      
content component

AutomationExampleCard

Reusable automation example card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AutomationExampleCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page AutomationExampleCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/availability-calendar.wrn b/app/pages/components/availability-calendar.wrn index 8ba7814c..f04a9493 100644 --- a/app/pages/components/availability-calendar.wrn +++ b/app/pages/components/availability-calendar.wrn @@ -10,10 +10,10 @@ page AvailabilityCalendarcomponent {
W WRNexusJS - +
-
content component

AvailabilityCalendar

Reusable availability calendar component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AvailabilityCalendar
+      
content component

AvailabilityCalendar

Reusable availability calendar component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AvailabilityCalendar
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page AvailabilityCalendarcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/avatar-group.wrn b/app/pages/components/avatar-group.wrn index c7fdfb2f..b2b65898 100644 --- a/app/pages/components/avatar-group.wrn +++ b/app/pages/components/avatar-group.wrn @@ -10,10 +10,10 @@ page AvatarGroupcomponent {
W WRNexusJS - +
-
forms component

AvatarGroup

Reusable avatar group component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AvatarGroup
+      
forms component

AvatarGroup

Reusable avatar group component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AvatarGroup
   label="Avatar"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page AvatarGroupcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/avatar-upload.wrn b/app/pages/components/avatar-upload.wrn index 418f11a6..26c3e367 100644 --- a/app/pages/components/avatar-upload.wrn +++ b/app/pages/components/avatar-upload.wrn @@ -10,10 +10,10 @@ page AvatarUploadcomponent {
W WRNexusJS - +
-
content component

AvatarUpload

Reusable avatar upload component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AvatarUpload
+      
content component

AvatarUpload

Reusable avatar upload component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<AvatarUpload
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page AvatarUploadcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/avatar.wrn b/app/pages/components/avatar.wrn index 4827fd0f..c79818bd 100644 --- a/app/pages/components/avatar.wrn +++ b/app/pages/components/avatar.wrn @@ -10,10 +10,10 @@ page Avatarcomponent {
W WRNexusJS - +
-
content component

Avatar

Reusable avatar component.

@wrnexus/ui 0.2.685 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Avatar
+      
content component

Avatar

Reusable avatar component.

@wrnexus/ui 0.2.695 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Avatar
   src="src"
   alt="alt"
   initials="WR"
@@ -34,7 +34,7 @@ page Avatarcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/back-button.wrn b/app/pages/components/back-button.wrn index dc129182..61e4bbe9 100644 --- a/app/pages/components/back-button.wrn +++ b/app/pages/components/back-button.wrn @@ -10,10 +10,10 @@ page BackButtoncomponent {
W WRNexusJS - +
-
actions component

BackButton

Reusable back button component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BackButton
+      
actions component

BackButton

Reusable back button component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BackButton
   label="Action"
   type="button"
   disabled="false"
@@ -30,7 +30,7 @@ page BackButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/back-to-top.wrn b/app/pages/components/back-to-top.wrn index ab7019f4..a4259ffc 100644 --- a/app/pages/components/back-to-top.wrn +++ b/app/pages/components/back-to-top.wrn @@ -10,10 +10,10 @@ page BackToTopcomponent {
W WRNexusJS - +
-
core component

BackToTop

Reusable back to top component.

@wrnexus/ui 0.2.684 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BackToTop
+      
core component

BackToTop

Reusable back to top component.

@wrnexus/ui 0.2.694 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BackToTop
   label="Back to top"
   assistiveLabel="Return to the top of the page"
   threshold="500"
@@ -111,7 +111,7 @@ page BackToTopcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/badge.wrn b/app/pages/components/badge.wrn index 0a27f61c..4ac7c7ff 100644 --- a/app/pages/components/badge.wrn +++ b/app/pages/components/badge.wrn @@ -10,10 +10,10 @@ page Badgecomponent {
W WRNexusJS - +
-
feedback component

Badge

Reusable badge component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Badge
+      
feedback component

Badge

Reusable badge component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Badge
   label="label"
   variant="neutral"
 />

Legacy mount name: data-component="Badge".

Props and attributes

PropTypeRequirementDefault
classstringOptional""
labelstringOptional""
variantstringOptional"neutral"

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Badge.wrn

component Badge {
@@ -28,7 +28,7 @@ page Badgecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/bank-transfer-details.wrn b/app/pages/components/bank-transfer-details.wrn index 0ad34c09..99d3b250 100644 --- a/app/pages/components/bank-transfer-details.wrn +++ b/app/pages/components/bank-transfer-details.wrn @@ -10,10 +10,10 @@ page BankTransferDetailscomponent {
W WRNexusJS - +
-
content component

BankTransferDetails

Reusable bank transfer details component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BankTransferDetails
+      
content component

BankTransferDetails

Reusable bank transfer details component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BankTransferDetails
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page BankTransferDetailscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/banner.wrn b/app/pages/components/banner.wrn index 19338a75..35484d8b 100644 --- a/app/pages/components/banner.wrn +++ b/app/pages/components/banner.wrn @@ -10,10 +10,10 @@ page Bannercomponent {
W WRNexusJS - +
-
feedback component

Banner

Reusable banner component.

@wrnexus/ui 0.2.685 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Banner
+      
feedback component

Banner

Reusable banner component.

@wrnexus/ui 0.2.695 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Banner
   text="Announcement"
   href="href"
   actionLabel="Learn more"
@@ -34,7 +34,7 @@ page Bannercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/bar-chart.wrn b/app/pages/components/bar-chart.wrn index 8ae1a396..9606a81c 100644 --- a/app/pages/components/bar-chart.wrn +++ b/app/pages/components/bar-chart.wrn @@ -10,10 +10,10 @@ page BarChartcomponent {
W WRNexusJS - +
-
visualization component

BarChart

Reusable bar chart component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BarChart
+      
visualization component

BarChart

Reusable bar chart component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BarChart
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page BarChartcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/beta-badge.wrn b/app/pages/components/beta-badge.wrn index e570240c..570b5fd8 100644 --- a/app/pages/components/beta-badge.wrn +++ b/app/pages/components/beta-badge.wrn @@ -10,10 +10,10 @@ page BetaBadgecomponent {
W WRNexusJS - +
-
feedback component

BetaBadge

Reusable beta badge component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BetaBadge
+      
feedback component

BetaBadge

Reusable beta badge component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BetaBadge
   label="Beta"
   variant="default"
 />

Legacy mount name: data-component="BetaBadge".

Props and attributes

PropTypeRequirementDefault
labelstringOptional"Beta"
variantstringOptional"default"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/BetaBadge.wrn

component BetaBadge {
@@ -28,7 +28,7 @@ page BetaBadgecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/billing-address-form.wrn b/app/pages/components/billing-address-form.wrn index aaaf497f..ba865d12 100644 --- a/app/pages/components/billing-address-form.wrn +++ b/app/pages/components/billing-address-form.wrn @@ -10,10 +10,10 @@ page BillingAddressFormcomponent {
W WRNexusJS - +
-
content component

BillingAddressForm

Reusable billing address form component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BillingAddressForm
+      
content component

BillingAddressForm

Reusable billing address form component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BillingAddressForm
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page BillingAddressFormcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/billing-example.wrn b/app/pages/components/billing-example.wrn index 5cbd88a0..7623ac92 100644 --- a/app/pages/components/billing-example.wrn +++ b/app/pages/components/billing-example.wrn @@ -10,10 +10,10 @@ page BillingExamplecomponent {
W WRNexusJS - +
-
content component

BillingExample

Reusable billing example component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BillingExample
+      
content component

BillingExample

Reusable billing example component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BillingExample
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page BillingExamplecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/billing-period-toggle.wrn b/app/pages/components/billing-period-toggle.wrn index f97e6f57..21e3a305 100644 --- a/app/pages/components/billing-period-toggle.wrn +++ b/app/pages/components/billing-period-toggle.wrn @@ -10,10 +10,10 @@ page BillingPeriodTogglecomponent {
W WRNexusJS - +
-
forms component

BillingPeriodToggle

Reusable billing period toggle component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BillingPeriodToggle
+      
forms component

BillingPeriodToggle

Reusable billing period toggle component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BillingPeriodToggle
   label="BillingPeriod"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page BillingPeriodTogglecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/blackout-date-picker.wrn b/app/pages/components/blackout-date-picker.wrn index b43dca5f..26a0db60 100644 --- a/app/pages/components/blackout-date-picker.wrn +++ b/app/pages/components/blackout-date-picker.wrn @@ -10,10 +10,10 @@ page BlackoutDatePickercomponent {
W WRNexusJS - +
-
forms component

BlackoutDatePicker

Reusable blackout date picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BlackoutDatePicker
+      
forms component

BlackoutDatePicker

Reusable blackout date picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BlackoutDatePicker
   label="BlackoutDate"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page BlackoutDatePickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/blog-card.wrn b/app/pages/components/blog-card.wrn index 40d357f4..b79e5288 100644 --- a/app/pages/components/blog-card.wrn +++ b/app/pages/components/blog-card.wrn @@ -10,10 +10,10 @@ page BlogCardcomponent {
W WRNexusJS - +
-
content component

BlogCard

Reusable blog card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BlogCard
+      
content component

BlogCard

Reusable blog card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BlogCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page BlogCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/blog-grid.wrn b/app/pages/components/blog-grid.wrn index 09d77538..4eaefb78 100644 --- a/app/pages/components/blog-grid.wrn +++ b/app/pages/components/blog-grid.wrn @@ -10,10 +10,10 @@ page BlogGridcomponent {
W WRNexusJS - +
-
data component

BlogGrid

Reusable blog grid component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BlogGrid
+      
data component

BlogGrid

Reusable blog grid component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BlogGrid
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page BlogGridcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/blog-list.wrn b/app/pages/components/blog-list.wrn index bdb6bc1f..6ffcb774 100644 --- a/app/pages/components/blog-list.wrn +++ b/app/pages/components/blog-list.wrn @@ -10,10 +10,10 @@ page BlogListcomponent {
W WRNexusJS - +
-
data component

BlogList

Reusable blog list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BlogList
+      
data component

BlogList

Reusable blog list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BlogList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page BlogListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/blog-search.wrn b/app/pages/components/blog-search.wrn index 06fa4665..c34be066 100644 --- a/app/pages/components/blog-search.wrn +++ b/app/pages/components/blog-search.wrn @@ -10,10 +10,10 @@ page BlogSearchcomponent {
W WRNexusJS - +
-
content component

BlogSearch

Reusable blog search component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BlogSearch
+      
content component

BlogSearch

Reusable blog search component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BlogSearch
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page BlogSearchcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/body-text.wrn b/app/pages/components/body-text.wrn index f62b7197..0212c137 100644 --- a/app/pages/components/body-text.wrn +++ b/app/pages/components/body-text.wrn @@ -10,10 +10,10 @@ page BodyTextcomponent {
W WRNexusJS - +
-
content component

BodyText

Reusable body text component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BodyText
+      
content component

BodyText

Reusable body text component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BodyText
   text="text"
   align="start"
 />

Legacy mount name: data-component="BodyText".

Props and attributes

PropTypeRequirementDefault
textstringOptional""
alignstringOptional"start"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/BodyText.wrn

component BodyText {
@@ -28,7 +28,7 @@ page BodyTextcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/border-radius-picker.wrn b/app/pages/components/border-radius-picker.wrn index 9909bbeb..4cfa864a 100644 --- a/app/pages/components/border-radius-picker.wrn +++ b/app/pages/components/border-radius-picker.wrn @@ -10,10 +10,10 @@ page BorderRadiusPickercomponent {
W WRNexusJS - +
-
forms component

BorderRadiusPicker

Reusable border radius picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BorderRadiusPicker
+      
forms component

BorderRadiusPicker

Reusable border radius picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BorderRadiusPicker
   label="BorderRadius"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page BorderRadiusPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/bottom-navigation.wrn b/app/pages/components/bottom-navigation.wrn index df3d80a5..438dd2d8 100644 --- a/app/pages/components/bottom-navigation.wrn +++ b/app/pages/components/bottom-navigation.wrn @@ -10,10 +10,10 @@ page BottomNavigationcomponent {
W WRNexusJS - +
-
layout component

BottomNavigation

Reusable bottom navigation component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BottomNavigation
+      
layout component

BottomNavigation

Reusable bottom navigation component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BottomNavigation
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page BottomNavigationcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/brand-color-picker.wrn b/app/pages/components/brand-color-picker.wrn index c8981da6..616fe24e 100644 --- a/app/pages/components/brand-color-picker.wrn +++ b/app/pages/components/brand-color-picker.wrn @@ -10,10 +10,10 @@ page BrandColorPickercomponent {
W WRNexusJS - +
-
forms component

BrandColorPicker

Reusable brand color picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BrandColorPicker
+      
forms component

BrandColorPicker

Reusable brand color picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BrandColorPicker
   label="BrandColor"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page BrandColorPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/brand-selector.wrn b/app/pages/components/brand-selector.wrn index 3bdc64b2..59a1317e 100644 --- a/app/pages/components/brand-selector.wrn +++ b/app/pages/components/brand-selector.wrn @@ -10,10 +10,10 @@ page BrandSelectorcomponent {
W WRNexusJS - +
-
forms component

BrandSelector

Reusable brand selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BrandSelector
+      
forms component

BrandSelector

Reusable brand selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BrandSelector
   label="Brand"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page BrandSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/breadcrumbs.wrn b/app/pages/components/breadcrumbs.wrn index 3e7481a7..3ce8ef91 100644 --- a/app/pages/components/breadcrumbs.wrn +++ b/app/pages/components/breadcrumbs.wrn @@ -10,10 +10,10 @@ page Breadcrumbscomponent {
W WRNexusJS - +
-
core component

Breadcrumbs

Reusable breadcrumbs component.

@wrnexus/ui 0.2.687 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Breadcrumbs
+      
core component

Breadcrumbs

Reusable breadcrumbs component.

@wrnexus/ui 0.2.697 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Breadcrumbs
   items="[]"
   centered="false"
   compact="false"
@@ -121,7 +121,7 @@ page Breadcrumbscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/browser-frame.wrn b/app/pages/components/browser-frame.wrn index bc6eff4d..ec4d6157 100644 --- a/app/pages/components/browser-frame.wrn +++ b/app/pages/components/browser-frame.wrn @@ -10,10 +10,10 @@ page BrowserFramecomponent {
W WRNexusJS - +
-
layout component

BrowserFrame

Reusable browser frame component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BrowserFrame
+      
layout component

BrowserFrame

Reusable browser frame component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BrowserFrame
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page BrowserFramecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/budget-range-slider.wrn b/app/pages/components/budget-range-slider.wrn index 674fa148..f0ef6c19 100644 --- a/app/pages/components/budget-range-slider.wrn +++ b/app/pages/components/budget-range-slider.wrn @@ -10,10 +10,10 @@ page BudgetRangeSlidercomponent {
W WRNexusJS - +
-
content component

BudgetRangeSlider

Reusable budget range slider component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BudgetRangeSlider
+      
content component

BudgetRangeSlider

Reusable budget range slider component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BudgetRangeSlider
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page BudgetRangeSlidercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/budget-selector.wrn b/app/pages/components/budget-selector.wrn index 4421ac0a..70c8e99f 100644 --- a/app/pages/components/budget-selector.wrn +++ b/app/pages/components/budget-selector.wrn @@ -10,10 +10,10 @@ page BudgetSelectorcomponent {
W WRNexusJS - +
-
forms component

BudgetSelector

Reusable budget selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BudgetSelector
+      
forms component

BudgetSelector

Reusable budget selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BudgetSelector
   label="Budget"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page BudgetSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/business-hours-picker.wrn b/app/pages/components/business-hours-picker.wrn index 4c072f12..e74d5674 100644 --- a/app/pages/components/business-hours-picker.wrn +++ b/app/pages/components/business-hours-picker.wrn @@ -10,10 +10,10 @@ page BusinessHoursPickercomponent {
W WRNexusJS - +
-
forms component

BusinessHoursPicker

Reusable business hours picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BusinessHoursPicker
+      
forms component

BusinessHoursPicker

Reusable business hours picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<BusinessHoursPicker
   label="BusinessHours"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page BusinessHoursPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/button-group.wrn b/app/pages/components/button-group.wrn index 0891fa91..f28b3f3b 100644 --- a/app/pages/components/button-group.wrn +++ b/app/pages/components/button-group.wrn @@ -10,10 +10,10 @@ page ButtonGroupcomponent {
W WRNexusJS - +
-
forms component

ButtonGroup

Reusable button group component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ButtonGroup
+      
forms component

ButtonGroup

Reusable button group component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ButtonGroup
   label="Button"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page ButtonGroupcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/button-selector.wrn b/app/pages/components/button-selector.wrn index 1ce54340..255d885f 100644 --- a/app/pages/components/button-selector.wrn +++ b/app/pages/components/button-selector.wrn @@ -10,10 +10,10 @@ page ButtonSelectorcomponent {
W WRNexusJS - +
-
forms component

ButtonSelector

Reusable button selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ButtonSelector
+      
forms component

ButtonSelector

Reusable button selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ButtonSelector
   label="Button"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page ButtonSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/button.wrn b/app/pages/components/button.wrn index 7d0e0a7e..52d11d89 100644 --- a/app/pages/components/button.wrn +++ b/app/pages/components/button.wrn @@ -10,10 +10,10 @@ page Buttoncomponent {
W WRNexusJS - +
-
actions component

Button

Reusable button component.

@wrnexus/ui 0.2.688 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Button
+      
actions component

Button

Reusable button component.

@wrnexus/ui 0.2.698 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Button
   label="Button"
   type="button"
   variant="primary"
@@ -39,7 +39,7 @@ page Buttoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/calendar-grid.wrn b/app/pages/components/calendar-grid.wrn index 9f7b7186..c8365e46 100644 --- a/app/pages/components/calendar-grid.wrn +++ b/app/pages/components/calendar-grid.wrn @@ -10,10 +10,10 @@ page CalendarGridcomponent {
W WRNexusJS - +
-
data component

CalendarGrid

Reusable calendar grid component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CalendarGrid
+      
data component

CalendarGrid

Reusable calendar grid component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CalendarGrid
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page CalendarGridcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/calendar-header.wrn b/app/pages/components/calendar-header.wrn index 074cf7a1..355a3767 100644 --- a/app/pages/components/calendar-header.wrn +++ b/app/pages/components/calendar-header.wrn @@ -10,10 +10,10 @@ page CalendarHeadercomponent {
W WRNexusJS - +
-
layout component

CalendarHeader

Reusable calendar header component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CalendarHeader
+      
layout component

CalendarHeader

Reusable calendar header component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CalendarHeader
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page CalendarHeadercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/calendar-navigation.wrn b/app/pages/components/calendar-navigation.wrn index d0f01c4f..9cb7b037 100644 --- a/app/pages/components/calendar-navigation.wrn +++ b/app/pages/components/calendar-navigation.wrn @@ -10,10 +10,10 @@ page CalendarNavigationcomponent {
W WRNexusJS - +
-
layout component

CalendarNavigation

Reusable calendar navigation component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CalendarNavigation
+      
layout component

CalendarNavigation

Reusable calendar navigation component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CalendarNavigation
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page CalendarNavigationcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/calendar.wrn b/app/pages/components/calendar.wrn index 4a9633aa..8cf9baca 100644 --- a/app/pages/components/calendar.wrn +++ b/app/pages/components/calendar.wrn @@ -10,10 +10,10 @@ page Calendarcomponent {
W WRNexusJS - +
-
content component

Calendar

Reusable calendar component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Calendar
+      
content component

Calendar

Reusable calendar component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Calendar
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page Calendarcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/callback-url-input.wrn b/app/pages/components/callback-url-input.wrn index d131cb5b..ed3d0f37 100644 --- a/app/pages/components/callback-url-input.wrn +++ b/app/pages/components/callback-url-input.wrn @@ -10,10 +10,10 @@ page CallbackUrlInputcomponent {
W WRNexusJS - +
-
forms component

CallbackUrlInput

Reusable callback url input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CallbackUrlInput
+      
forms component

CallbackUrlInput

Reusable callback url input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CallbackUrlInput
   label="CallbackUrl"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page CallbackUrlInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/campaign-card.wrn b/app/pages/components/campaign-card.wrn index dd204cf2..2c4e3baf 100644 --- a/app/pages/components/campaign-card.wrn +++ b/app/pages/components/campaign-card.wrn @@ -10,10 +10,10 @@ page CampaignCardcomponent {
W WRNexusJS - +
-
content component

CampaignCard

Reusable campaign card component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CampaignCard
+      
content component

CampaignCard

Reusable campaign card component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CampaignCard
   title="title"
   description="description"
   href="href"
@@ -37,7 +37,7 @@ page CampaignCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/campaign-performance-preview.wrn b/app/pages/components/campaign-performance-preview.wrn index a7e77511..553c7d3d 100644 --- a/app/pages/components/campaign-performance-preview.wrn +++ b/app/pages/components/campaign-performance-preview.wrn @@ -10,10 +10,10 @@ page CampaignPerformancePreviewcomponent {
W WRNexusJS - +
-
content component

CampaignPerformancePreview

Reusable campaign performance preview component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CampaignPerformancePreview
+      
content component

CampaignPerformancePreview

Reusable campaign performance preview component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CampaignPerformancePreview
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page CampaignPerformancePreviewcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/campaign-progress.wrn b/app/pages/components/campaign-progress.wrn index c2cef9a2..9adadccd 100644 --- a/app/pages/components/campaign-progress.wrn +++ b/app/pages/components/campaign-progress.wrn @@ -10,10 +10,10 @@ page CampaignProgresscomponent {
W WRNexusJS - +
-
visualization component

CampaignProgress

Reusable campaign progress component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CampaignProgress
+      
visualization component

CampaignProgress

Reusable campaign progress component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CampaignProgress
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page CampaignProgresscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/capability-grid.wrn b/app/pages/components/capability-grid.wrn index 06392d6d..8a343247 100644 --- a/app/pages/components/capability-grid.wrn +++ b/app/pages/components/capability-grid.wrn @@ -10,10 +10,10 @@ page CapabilityGridcomponent {
W WRNexusJS - +
-
data component

CapabilityGrid

Reusable capability grid component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CapabilityGrid
+      
data component

CapabilityGrid

Reusable capability grid component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CapabilityGrid
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page CapabilityGridcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/captcha-field.wrn b/app/pages/components/captcha-field.wrn index 8b38e1ff..70238a42 100644 --- a/app/pages/components/captcha-field.wrn +++ b/app/pages/components/captcha-field.wrn @@ -10,10 +10,10 @@ page CaptchaFieldcomponent {
W WRNexusJS - +
-
forms component

CaptchaField

Reusable captcha field component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CaptchaField
+      
forms component

CaptchaField

Reusable captcha field component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CaptchaField
   label="Captcha"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page CaptchaFieldcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/card-payment-form.wrn b/app/pages/components/card-payment-form.wrn index 73f02cc6..c3d46323 100644 --- a/app/pages/components/card-payment-form.wrn +++ b/app/pages/components/card-payment-form.wrn @@ -10,10 +10,10 @@ page CardPaymentFormcomponent {
W WRNexusJS - +
-
content component

CardPaymentForm

Reusable card payment form component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CardPaymentForm
+      
content component

CardPaymentForm

Reusable card payment form component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CardPaymentForm
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page CardPaymentFormcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/card-selector.wrn b/app/pages/components/card-selector.wrn index 3ed8fac9..d6caeb85 100644 --- a/app/pages/components/card-selector.wrn +++ b/app/pages/components/card-selector.wrn @@ -10,10 +10,10 @@ page CardSelectorcomponent {
W WRNexusJS - +
-
forms component

CardSelector

Reusable card selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CardSelector
+      
forms component

CardSelector

Reusable card selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CardSelector
   label="Card"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page CardSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/card-skeleton.wrn b/app/pages/components/card-skeleton.wrn index 1e46c69b..26adfe99 100644 --- a/app/pages/components/card-skeleton.wrn +++ b/app/pages/components/card-skeleton.wrn @@ -10,10 +10,10 @@ page CardSkeletoncomponent {
W WRNexusJS - +
-
feedback component

CardSkeleton

Reusable card skeleton component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CardSkeleton
+      
feedback component

CardSkeleton

Reusable card skeleton component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CardSkeleton
   label="Card"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page CardSkeletoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/card.wrn b/app/pages/components/card.wrn index b57a4d8e..bd28919c 100644 --- a/app/pages/components/card.wrn +++ b/app/pages/components/card.wrn @@ -10,10 +10,10 @@ page Cardcomponent {
W WRNexusJS - +
-
content component

Card

Reusable card component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Card
+      
content component

Card

Reusable card component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Card
   variant="default"
   padding="md"
   interactive="false"
@@ -31,7 +31,7 @@ page Cardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/career-application-form.wrn b/app/pages/components/career-application-form.wrn index a1e7b08c..339bc1a0 100644 --- a/app/pages/components/career-application-form.wrn +++ b/app/pages/components/career-application-form.wrn @@ -10,10 +10,10 @@ page CareerApplicationFormcomponent {
W WRNexusJS - +
-
content component

CareerApplicationForm

Reusable career application form component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CareerApplicationForm
+      
content component

CareerApplicationForm

Reusable career application form component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CareerApplicationForm
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page CareerApplicationFormcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/career-benefits-grid.wrn b/app/pages/components/career-benefits-grid.wrn index 5792e493..1c8ca6ce 100644 --- a/app/pages/components/career-benefits-grid.wrn +++ b/app/pages/components/career-benefits-grid.wrn @@ -10,10 +10,10 @@ page CareerBenefitsGridcomponent {
W WRNexusJS - +
-
data component

CareerBenefitsGrid

Reusable career benefits grid component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CareerBenefitsGrid
+      
data component

CareerBenefitsGrid

Reusable career benefits grid component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CareerBenefitsGrid
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page CareerBenefitsGridcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/carousel.wrn b/app/pages/components/carousel.wrn index e997ca50..6c717585 100644 --- a/app/pages/components/carousel.wrn +++ b/app/pages/components/carousel.wrn @@ -10,10 +10,10 @@ page Carouselcomponent {
W WRNexusJS - +
-
content component

Carousel

Reusable carousel component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Carousel
+      
content component

Carousel

Reusable carousel component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Carousel
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page Carouselcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/case-study-card.wrn b/app/pages/components/case-study-card.wrn index 7aa90f81..2285e8ff 100644 --- a/app/pages/components/case-study-card.wrn +++ b/app/pages/components/case-study-card.wrn @@ -10,10 +10,10 @@ page CaseStudyCardcomponent {
W WRNexusJS - +
-
content component

CaseStudyCard

Reusable case study card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CaseStudyCard
+      
content component

CaseStudyCard

Reusable case study card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CaseStudyCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page CaseStudyCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/case-study-hero.wrn b/app/pages/components/case-study-hero.wrn index e9914b4c..1a90f53b 100644 --- a/app/pages/components/case-study-hero.wrn +++ b/app/pages/components/case-study-hero.wrn @@ -10,10 +10,10 @@ page CaseStudyHerocomponent {
W WRNexusJS - +
-
layout component

CaseStudyHero

Reusable case study hero component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CaseStudyHero
+      
layout component

CaseStudyHero

Reusable case study hero component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CaseStudyHero
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page CaseStudyHerocomponent {
     }
 }
 
- + } diff --git a/app/pages/components/case-study-preview.wrn b/app/pages/components/case-study-preview.wrn index ea14ff88..fd37709e 100644 --- a/app/pages/components/case-study-preview.wrn +++ b/app/pages/components/case-study-preview.wrn @@ -10,10 +10,10 @@ page CaseStudyPreviewcomponent {
W WRNexusJS - +
-
content component

CaseStudyPreview

Reusable case study preview component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CaseStudyPreview
+      
content component

CaseStudyPreview

Reusable case study preview component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CaseStudyPreview
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page CaseStudyPreviewcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/centered-cta.wrn b/app/pages/components/centered-cta.wrn index acb9d151..f71a7a34 100644 --- a/app/pages/components/centered-cta.wrn +++ b/app/pages/components/centered-cta.wrn @@ -10,10 +10,10 @@ page CenteredCTAcomponent {
W WRNexusJS - +
-
actions component

CenteredCTA

Reusable centered c t a component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CenteredCTA
+      
actions component

CenteredCTA

Reusable centered c t a component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CenteredCTA
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page CenteredCTAcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/centered-hero.wrn b/app/pages/components/centered-hero.wrn index 7004d5f9..da4bd7f8 100644 --- a/app/pages/components/centered-hero.wrn +++ b/app/pages/components/centered-hero.wrn @@ -10,10 +10,10 @@ page CenteredHerocomponent {
W WRNexusJS - +
-
layout component

CenteredHero

Reusable centered hero component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CenteredHero
+      
layout component

CenteredHero

Reusable centered hero component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CenteredHero
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page CenteredHerocomponent {
     }
 }
 
- + } diff --git a/app/pages/components/centered-section-header.wrn b/app/pages/components/centered-section-header.wrn index 87314537..4c61fa5a 100644 --- a/app/pages/components/centered-section-header.wrn +++ b/app/pages/components/centered-section-header.wrn @@ -10,10 +10,10 @@ page CenteredSectionHeadercomponent {
W WRNexusJS - +
-
layout component

CenteredSectionHeader

Reusable centered section header component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CenteredSectionHeader
+      
layout component

CenteredSectionHeader

Reusable centered section header component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CenteredSectionHeader
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page CenteredSectionHeadercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/certificate-upload.wrn b/app/pages/components/certificate-upload.wrn index 697190fd..f0ccc91d 100644 --- a/app/pages/components/certificate-upload.wrn +++ b/app/pages/components/certificate-upload.wrn @@ -10,10 +10,10 @@ page CertificateUploadcomponent {
W WRNexusJS - +
-
content component

CertificateUpload

Reusable certificate upload component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CertificateUpload
+      
content component

CertificateUpload

Reusable certificate upload component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CertificateUpload
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page CertificateUploadcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/certification-badge.wrn b/app/pages/components/certification-badge.wrn index 08b1cefb..dca961b3 100644 --- a/app/pages/components/certification-badge.wrn +++ b/app/pages/components/certification-badge.wrn @@ -10,10 +10,10 @@ page CertificationBadgecomponent {
W WRNexusJS - +
-
feedback component

CertificationBadge

Reusable certification badge component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CertificationBadge
+      
feedback component

CertificationBadge

Reusable certification badge component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CertificationBadge
   label="Certification"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page CertificationBadgecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/challenge-section.wrn b/app/pages/components/challenge-section.wrn index 22ecc2e2..238e7a41 100644 --- a/app/pages/components/challenge-section.wrn +++ b/app/pages/components/challenge-section.wrn @@ -10,10 +10,10 @@ page ChallengeSectioncomponent {
W WRNexusJS - +
-
layout component

ChallengeSection

Reusable challenge section component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChallengeSection
+      
layout component

ChallengeSection

Reusable challenge section component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChallengeSection
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ChallengeSectioncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/channel-badge.wrn b/app/pages/components/channel-badge.wrn index a4ec280c..27cc1a93 100644 --- a/app/pages/components/channel-badge.wrn +++ b/app/pages/components/channel-badge.wrn @@ -10,10 +10,10 @@ page ChannelBadgecomponent {
W WRNexusJS - +
-
feedback component

ChannelBadge

Reusable channel badge component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChannelBadge
+      
feedback component

ChannelBadge

Reusable channel badge component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChannelBadge
   label="Channel"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ChannelBadgecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/channel-card.wrn b/app/pages/components/channel-card.wrn index 3b3dc25f..ec53ec52 100644 --- a/app/pages/components/channel-card.wrn +++ b/app/pages/components/channel-card.wrn @@ -10,10 +10,10 @@ page ChannelCardcomponent {
W WRNexusJS - +
-
content component

ChannelCard

Reusable channel card component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChannelCard
+      
content component

ChannelCard

Reusable channel card component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChannelCard
   title="title"
   description="description"
   href="href"
@@ -37,7 +37,7 @@ page ChannelCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/channel-comparison-chart.wrn b/app/pages/components/channel-comparison-chart.wrn index fd094632..5923f25f 100644 --- a/app/pages/components/channel-comparison-chart.wrn +++ b/app/pages/components/channel-comparison-chart.wrn @@ -10,10 +10,10 @@ page ChannelComparisonChartcomponent {
W WRNexusJS - +
-
visualization component

ChannelComparisonChart

Reusable channel comparison chart component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChannelComparisonChart
+      
visualization component

ChannelComparisonChart

Reusable channel comparison chart component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChannelComparisonChart
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page ChannelComparisonChartcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/channel-comparison-table.wrn b/app/pages/components/channel-comparison-table.wrn index 14c1adf7..1ee38457 100644 --- a/app/pages/components/channel-comparison-table.wrn +++ b/app/pages/components/channel-comparison-table.wrn @@ -10,10 +10,10 @@ page ChannelComparisonTablecomponent {
W WRNexusJS - +
-
data component

ChannelComparisonTable

Reusable channel comparison table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChannelComparisonTable
+      
data component

ChannelComparisonTable

Reusable channel comparison table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChannelComparisonTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page ChannelComparisonTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/channel-fallback-diagram.wrn b/app/pages/components/channel-fallback-diagram.wrn index 1c7a4db1..f6f472f2 100644 --- a/app/pages/components/channel-fallback-diagram.wrn +++ b/app/pages/components/channel-fallback-diagram.wrn @@ -10,10 +10,10 @@ page ChannelFallbackDiagramcomponent {
W WRNexusJS - +
-
visualization component

ChannelFallbackDiagram

Reusable channel fallback diagram component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChannelFallbackDiagram
+      
visualization component

ChannelFallbackDiagram

Reusable channel fallback diagram component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChannelFallbackDiagram
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page ChannelFallbackDiagramcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/channel-flow.wrn b/app/pages/components/channel-flow.wrn index 0efff041..11ba48bd 100644 --- a/app/pages/components/channel-flow.wrn +++ b/app/pages/components/channel-flow.wrn @@ -10,10 +10,10 @@ page ChannelFlowcomponent {
W WRNexusJS - +
-
visualization component

ChannelFlow

Reusable channel flow component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChannelFlow
+      
visualization component

ChannelFlow

Reusable channel flow component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChannelFlow
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page ChannelFlowcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/channel-icon.wrn b/app/pages/components/channel-icon.wrn index b26cc647..586d6c97 100644 --- a/app/pages/components/channel-icon.wrn +++ b/app/pages/components/channel-icon.wrn @@ -10,10 +10,10 @@ page ChannelIconcomponent {
W WRNexusJS - +
-
content component

ChannelIcon

Reusable channel icon component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChannelIcon
+      
content component

ChannelIcon

Reusable channel icon component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChannelIcon
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ChannelIconcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/channel-rate-table.wrn b/app/pages/components/channel-rate-table.wrn index 11e42495..128e435a 100644 --- a/app/pages/components/channel-rate-table.wrn +++ b/app/pages/components/channel-rate-table.wrn @@ -10,10 +10,10 @@ page ChannelRateTablecomponent {
W WRNexusJS - +
-
data component

ChannelRateTable

Reusable channel rate table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChannelRateTable
+      
data component

ChannelRateTable

Reusable channel rate table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChannelRateTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page ChannelRateTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/channel-selector.wrn b/app/pages/components/channel-selector.wrn index b25d11dc..9b9b6fb7 100644 --- a/app/pages/components/channel-selector.wrn +++ b/app/pages/components/channel-selector.wrn @@ -10,10 +10,10 @@ page ChannelSelectorcomponent {
W WRNexusJS - +
-
forms component

ChannelSelector

Reusable channel selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChannelSelector
+      
forms component

ChannelSelector

Reusable channel selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChannelSelector
   label="Channel"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page ChannelSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/character-counter.wrn b/app/pages/components/character-counter.wrn index a58f599b..cd9510ac 100644 --- a/app/pages/components/character-counter.wrn +++ b/app/pages/components/character-counter.wrn @@ -10,10 +10,10 @@ page CharacterCountercomponent {
W WRNexusJS - +
-
feedback component

CharacterCounter

Reusable character counter component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CharacterCounter
+      
feedback component

CharacterCounter

Reusable character counter component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CharacterCounter
   label="Character"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page CharacterCountercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/chart-empty-state.wrn b/app/pages/components/chart-empty-state.wrn index 25a1ab9c..b1999d56 100644 --- a/app/pages/components/chart-empty-state.wrn +++ b/app/pages/components/chart-empty-state.wrn @@ -10,10 +10,10 @@ page ChartEmptyStatecomponent {
W WRNexusJS - +
-
feedback component

ChartEmptyState

Reusable chart empty state component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChartEmptyState
+      
feedback component

ChartEmptyState

Reusable chart empty state component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChartEmptyState
   label="ChartEmpty"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ChartEmptyStatecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/chart-tooltip.wrn b/app/pages/components/chart-tooltip.wrn index 1a6aff9b..c3b5fe45 100644 --- a/app/pages/components/chart-tooltip.wrn +++ b/app/pages/components/chart-tooltip.wrn @@ -10,10 +10,10 @@ page ChartTooltipcomponent {
W WRNexusJS - +
-
content component

ChartTooltip

Reusable chart tooltip component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChartTooltip
+      
content component

ChartTooltip

Reusable chart tooltip component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChartTooltip
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ChartTooltipcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/checkbox-group.wrn b/app/pages/components/checkbox-group.wrn index 777ab0e2..fe437854 100644 --- a/app/pages/components/checkbox-group.wrn +++ b/app/pages/components/checkbox-group.wrn @@ -10,10 +10,10 @@ page CheckboxGroupcomponent {
W WRNexusJS - +
-
forms component

CheckboxGroup

Reusable checkbox group component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CheckboxGroup
+      
forms component

CheckboxGroup

Reusable checkbox group component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CheckboxGroup
   label="Checkbox"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page CheckboxGroupcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/checkbox.wrn b/app/pages/components/checkbox.wrn index 1bb3564b..477516c1 100644 --- a/app/pages/components/checkbox.wrn +++ b/app/pages/components/checkbox.wrn @@ -10,10 +10,10 @@ page Checkboxcomponent {
W WRNexusJS - +
-
core component

Checkbox

Reusable checkbox component.

@wrnexus/ui 0.2.687 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Checkbox
+      
core component

Checkbox

Reusable checkbox component.

@wrnexus/ui 0.2.697 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Checkbox
   id="id"
   name="name"
   label="Checkbox"
@@ -40,7 +40,7 @@ page Checkboxcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/checklist-progress.wrn b/app/pages/components/checklist-progress.wrn index b9e5770c..9f86622b 100644 --- a/app/pages/components/checklist-progress.wrn +++ b/app/pages/components/checklist-progress.wrn @@ -10,10 +10,10 @@ page ChecklistProgresscomponent {
W WRNexusJS - +
-
visualization component

ChecklistProgress

Reusable checklist progress component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChecklistProgress
+      
visualization component

ChecklistProgress

Reusable checklist progress component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChecklistProgress
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page ChecklistProgresscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/checklist.wrn b/app/pages/components/checklist.wrn index e245e671..d5148567 100644 --- a/app/pages/components/checklist.wrn +++ b/app/pages/components/checklist.wrn @@ -10,10 +10,10 @@ page Checklistcomponent {
W WRNexusJS - +
-
content component

Checklist

Reusable checklist component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Checklist
+      
content component

Checklist

Reusable checklist component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Checklist
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page Checklistcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/chip-input.wrn b/app/pages/components/chip-input.wrn index 8eeff3a1..7601974c 100644 --- a/app/pages/components/chip-input.wrn +++ b/app/pages/components/chip-input.wrn @@ -10,10 +10,10 @@ page ChipInputcomponent {
W WRNexusJS - +
-
forms component

ChipInput

Reusable chip input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChipInput
+      
forms component

ChipInput

Reusable chip input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ChipInput
   label="Chip"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page ChipInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/chip.wrn b/app/pages/components/chip.wrn index 98f5905d..e2190a76 100644 --- a/app/pages/components/chip.wrn +++ b/app/pages/components/chip.wrn @@ -10,10 +10,10 @@ page Chipcomponent {
W WRNexusJS - +
-
core component

Chip

Reusable chip component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Chip
+      
core component

Chip

Reusable chip component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Chip
   label="Chip"
   variant="default"
 />

Legacy mount name: data-component="Chip".

Props and attributes

PropTypeRequirementDefault
labelstringOptional"Chip"
variantstringOptional"default"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Chip.wrn

component Chip {
@@ -28,7 +28,7 @@ page Chipcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/circular-progress.wrn b/app/pages/components/circular-progress.wrn index 27ce604b..ab4847da 100644 --- a/app/pages/components/circular-progress.wrn +++ b/app/pages/components/circular-progress.wrn @@ -10,10 +10,10 @@ page CircularProgresscomponent {
W WRNexusJS - +
-
visualization component

CircularProgress

Reusable circular progress component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CircularProgress
+      
visualization component

CircularProgress

Reusable circular progress component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CircularProgress
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page CircularProgresscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/city-selector.wrn b/app/pages/components/city-selector.wrn index 3dfd515e..6e95bd8b 100644 --- a/app/pages/components/city-selector.wrn +++ b/app/pages/components/city-selector.wrn @@ -10,10 +10,10 @@ page CitySelectorcomponent {
W WRNexusJS - +
-
forms component

CitySelector

Reusable city selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CitySelector
+      
forms component

CitySelector

Reusable city selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CitySelector
   label="City"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page CitySelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/clear-filters-button.wrn b/app/pages/components/clear-filters-button.wrn index 5a5f32bd..4f7231a6 100644 --- a/app/pages/components/clear-filters-button.wrn +++ b/app/pages/components/clear-filters-button.wrn @@ -10,10 +10,10 @@ page ClearFiltersButtoncomponent {
W WRNexusJS - +
-
actions component

ClearFiltersButton

Reusable clear filters button component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ClearFiltersButton
+      
actions component

ClearFiltersButton

Reusable clear filters button component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ClearFiltersButton
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page ClearFiltersButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/clickable-card.wrn b/app/pages/components/clickable-card.wrn index c8f31816..867ee957 100644 --- a/app/pages/components/clickable-card.wrn +++ b/app/pages/components/clickable-card.wrn @@ -10,10 +10,10 @@ page ClickableCardcomponent {
W WRNexusJS - +
-
content component

ClickableCard

Reusable clickable card component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ClickableCard
+      
content component

ClickableCard

Reusable clickable card component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ClickableCard
   title="title"
   description="description"
   href="href"
@@ -36,7 +36,7 @@ page ClickableCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/close-button.wrn b/app/pages/components/close-button.wrn index 7c2ac21b..c939dcec 100644 --- a/app/pages/components/close-button.wrn +++ b/app/pages/components/close-button.wrn @@ -10,10 +10,10 @@ page CloseButtoncomponent {
W WRNexusJS - +
-
actions component

CloseButton

Reusable close button component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CloseButton
+      
actions component

CloseButton

Reusable close button component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CloseButton
   label="Action"
   type="button"
   disabled="false"
@@ -30,7 +30,7 @@ page CloseButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/cluster.wrn b/app/pages/components/cluster.wrn index 4b45de48..a638b1d3 100644 --- a/app/pages/components/cluster.wrn +++ b/app/pages/components/cluster.wrn @@ -10,10 +10,10 @@ page Clustercomponent {
W WRNexusJS - +
-
core component

Cluster

Reusable cluster component.

@wrnexus/ui 0.2.682 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Cluster
+      
core component

Cluster

Reusable cluster component.

@wrnexus/ui 0.2.692 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Cluster
   gap="4"
 />

Legacy mount name: data-component="Cluster".

Props and attributes

PropTypeRequirementDefault
gapstringOptional"4"
classNamestringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Cluster.wrn

component Cluster {
   props {
@@ -27,7 +27,7 @@ page Clustercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/code-block.wrn b/app/pages/components/code-block.wrn index 208be884..13971e4b 100644 --- a/app/pages/components/code-block.wrn +++ b/app/pages/components/code-block.wrn @@ -10,10 +10,10 @@ page CodeBlockcomponent {
W WRNexusJS - +
-
content component

CodeBlock

Reusable code block component.

@wrnexus/ui 0.2.684 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CodeBlock
+      
content component

CodeBlock

Reusable code block component.

@wrnexus/ui 0.2.694 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CodeBlock
   language="text"
   filename="filename"
   code="code"
@@ -42,7 +42,7 @@ page CodeBlockcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/code-copy-button.wrn b/app/pages/components/code-copy-button.wrn index 440bf7b7..a6a36aff 100644 --- a/app/pages/components/code-copy-button.wrn +++ b/app/pages/components/code-copy-button.wrn @@ -10,10 +10,10 @@ page CodeCopyButtoncomponent {
W WRNexusJS - +
-
actions component

CodeCopyButton

Reusable code copy button component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CodeCopyButton
+      
actions component

CodeCopyButton

Reusable code copy button component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CodeCopyButton
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page CodeCopyButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/code-header.wrn b/app/pages/components/code-header.wrn index 8c17596f..5484aa6d 100644 --- a/app/pages/components/code-header.wrn +++ b/app/pages/components/code-header.wrn @@ -10,10 +10,10 @@ page CodeHeadercomponent {
W WRNexusJS - +
-
layout component

CodeHeader

Reusable code header component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CodeHeader
+      
layout component

CodeHeader

Reusable code header component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CodeHeader
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page CodeHeadercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/code-input.wrn b/app/pages/components/code-input.wrn index aa2b184b..6612fffd 100644 --- a/app/pages/components/code-input.wrn +++ b/app/pages/components/code-input.wrn @@ -10,10 +10,10 @@ page CodeInputcomponent {
W WRNexusJS - +
-
forms component

CodeInput

Reusable code input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CodeInput
+      
forms component

CodeInput

Reusable code input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CodeInput
   label="Code"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page CodeInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/code-language-badge.wrn b/app/pages/components/code-language-badge.wrn index a8bf8dae..4f5bf6b8 100644 --- a/app/pages/components/code-language-badge.wrn +++ b/app/pages/components/code-language-badge.wrn @@ -10,10 +10,10 @@ page CodeLanguageBadgecomponent {
W WRNexusJS - +
-
feedback component

CodeLanguageBadge

Reusable code language badge component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CodeLanguageBadge
+      
feedback component

CodeLanguageBadge

Reusable code language badge component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CodeLanguageBadge
   label="CodeLanguage"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page CodeLanguageBadgecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/code-tabs.wrn b/app/pages/components/code-tabs.wrn index 4d4553eb..6e1e1ecc 100644 --- a/app/pages/components/code-tabs.wrn +++ b/app/pages/components/code-tabs.wrn @@ -10,10 +10,10 @@ page CodeTabscomponent {
W WRNexusJS - +
-
content component

CodeTabs

Reusable code tabs component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CodeTabs
+      
content component

CodeTabs

Reusable code tabs component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CodeTabs
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page CodeTabscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/code-text.wrn b/app/pages/components/code-text.wrn index 324995b0..5dc64472 100644 --- a/app/pages/components/code-text.wrn +++ b/app/pages/components/code-text.wrn @@ -10,10 +10,10 @@ page CodeTextcomponent {
W WRNexusJS - +
-
content component

CodeText

Reusable code text component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CodeText
+      
content component

CodeText

Reusable code text component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CodeText
   text="text"
   align="start"
 />

Legacy mount name: data-component="CodeText".

Props and attributes

PropTypeRequirementDefault
textstringOptional""
alignstringOptional"start"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/CodeText.wrn

component CodeText {
@@ -28,7 +28,7 @@ page CodeTextcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/code.wrn b/app/pages/components/code.wrn index fff40ff4..c583f1c1 100644 --- a/app/pages/components/code.wrn +++ b/app/pages/components/code.wrn @@ -10,10 +10,10 @@ page Codecomponent {
W WRNexusJS - +
-
content component

Code

Reusable code component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Code
+      
content component

Code

Reusable code component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Code
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page Codecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/cohort-chart.wrn b/app/pages/components/cohort-chart.wrn index b20234fe..35cbea82 100644 --- a/app/pages/components/cohort-chart.wrn +++ b/app/pages/components/cohort-chart.wrn @@ -10,10 +10,10 @@ page CohortChartcomponent {
W WRNexusJS - +
-
visualization component

CohortChart

Reusable cohort chart component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CohortChart
+      
visualization component

CohortChart

Reusable cohort chart component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CohortChart
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page CohortChartcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/color-grid.wrn b/app/pages/components/color-grid.wrn index 886a495a..2e5ca2e3 100644 --- a/app/pages/components/color-grid.wrn +++ b/app/pages/components/color-grid.wrn @@ -10,10 +10,10 @@ page ColorGridcomponent {
W WRNexusJS - +
-
data component

ColorGrid

Reusable color grid component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ColorGrid
+      
data component

ColorGrid

Reusable color grid component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ColorGrid
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page ColorGridcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/color-hex-input.wrn b/app/pages/components/color-hex-input.wrn index a4a5e10d..fd34a27f 100644 --- a/app/pages/components/color-hex-input.wrn +++ b/app/pages/components/color-hex-input.wrn @@ -10,10 +10,10 @@ page ColorHexInputcomponent {
W WRNexusJS - +
-
forms component

ColorHexInput

Reusable color hex input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ColorHexInput
+      
forms component

ColorHexInput

Reusable color hex input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ColorHexInput
   label="ColorHex"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page ColorHexInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/color-picker.wrn b/app/pages/components/color-picker.wrn index 9291e9de..88f1dafb 100644 --- a/app/pages/components/color-picker.wrn +++ b/app/pages/components/color-picker.wrn @@ -10,10 +10,10 @@ page ColorPickercomponent {
W WRNexusJS - +
-
forms component

ColorPicker

Reusable color picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ColorPicker
+      
forms component

ColorPicker

Reusable color picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ColorPicker
   label="Color"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page ColorPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/color-selector.wrn b/app/pages/components/color-selector.wrn index f4e09f16..9a33526b 100644 --- a/app/pages/components/color-selector.wrn +++ b/app/pages/components/color-selector.wrn @@ -10,10 +10,10 @@ page ColorSelectorcomponent {
W WRNexusJS - +
-
forms component

ColorSelector

Reusable color selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ColorSelector
+      
forms component

ColorSelector

Reusable color selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ColorSelector
   label="Color"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page ColorSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/color-swatch.wrn b/app/pages/components/color-swatch.wrn index 0c704501..46475b8c 100644 --- a/app/pages/components/color-swatch.wrn +++ b/app/pages/components/color-swatch.wrn @@ -10,10 +10,10 @@ page ColorSwatchcomponent {
W WRNexusJS - +
-
content component

ColorSwatch

Reusable color swatch component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ColorSwatch
+      
content component

ColorSwatch

Reusable color swatch component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ColorSwatch
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ColorSwatchcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/combobox.wrn b/app/pages/components/combobox.wrn index 4b171b72..0baca502 100644 --- a/app/pages/components/combobox.wrn +++ b/app/pages/components/combobox.wrn @@ -10,10 +10,10 @@ page Comboboxcomponent {
W WRNexusJS - +
-
core component

Combobox

Reusable combobox component.

@wrnexus/ui 0.2.688 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Combobox
+      
core component

Combobox

Reusable combobox component.

@wrnexus/ui 0.2.698 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Combobox
   id="combobox"
   name="name"
   label="Choose an option"
@@ -39,7 +39,7 @@ page Comboboxcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/coming-soon-badge.wrn b/app/pages/components/coming-soon-badge.wrn index 3675cecd..c2b11be7 100644 --- a/app/pages/components/coming-soon-badge.wrn +++ b/app/pages/components/coming-soon-badge.wrn @@ -10,10 +10,10 @@ page ComingSoonBadgecomponent {
W WRNexusJS - +
-
feedback component

ComingSoonBadge

Reusable coming soon badge component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ComingSoonBadge
+      
feedback component

ComingSoonBadge

Reusable coming soon badge component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ComingSoonBadge
   label="ComingSoon"
   variant="default"
 />

Legacy mount name: data-component="ComingSoonBadge".

Props and attributes

PropTypeRequirementDefault
labelstringOptional"ComingSoon"
variantstringOptional"default"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/ComingSoonBadge.wrn

component ComingSoonBadge {
@@ -28,7 +28,7 @@ page ComingSoonBadgecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/coming-soon-state.wrn b/app/pages/components/coming-soon-state.wrn index e785144a..0e8dbb42 100644 --- a/app/pages/components/coming-soon-state.wrn +++ b/app/pages/components/coming-soon-state.wrn @@ -10,10 +10,10 @@ page ComingSoonStatecomponent {
W WRNexusJS - +
-
feedback component

ComingSoonState

Reusable coming soon state component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ComingSoonState
+      
feedback component

ComingSoonState

Reusable coming soon state component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ComingSoonState
   label="ComingSoon"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ComingSoonStatecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/command-block.wrn b/app/pages/components/command-block.wrn index 533cb0af..58341285 100644 --- a/app/pages/components/command-block.wrn +++ b/app/pages/components/command-block.wrn @@ -10,10 +10,10 @@ page CommandBlockcomponent {
W WRNexusJS - +
-
content component

CommandBlock

Reusable command block component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CommandBlock
+      
content component

CommandBlock

Reusable command block component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CommandBlock
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page CommandBlockcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/command-menu.wrn b/app/pages/components/command-menu.wrn index 06d38e18..fdf673a4 100644 --- a/app/pages/components/command-menu.wrn +++ b/app/pages/components/command-menu.wrn @@ -10,10 +10,10 @@ page CommandMenucomponent {
W WRNexusJS - +
-
overlays component

CommandMenu

Reusable command menu component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CommandMenu
+      
overlays component

CommandMenu

Reusable command menu component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CommandMenu
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page CommandMenucomponent {
     }
 }
 
- + } diff --git a/app/pages/components/command-search-input.wrn b/app/pages/components/command-search-input.wrn index 5bac7835..96008384 100644 --- a/app/pages/components/command-search-input.wrn +++ b/app/pages/components/command-search-input.wrn @@ -10,10 +10,10 @@ page CommandSearchInputcomponent {
W WRNexusJS - +
-
forms component

CommandSearchInput

Reusable command search input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CommandSearchInput
+      
forms component

CommandSearchInput

Reusable command search input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CommandSearchInput
   label="CommandSearch"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page CommandSearchInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/company-hero.wrn b/app/pages/components/company-hero.wrn index e187aa46..fefc3e87 100644 --- a/app/pages/components/company-hero.wrn +++ b/app/pages/components/company-hero.wrn @@ -10,10 +10,10 @@ page CompanyHerocomponent {
W WRNexusJS - +
-
layout component

CompanyHero

Reusable company hero component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CompanyHero
+      
layout component

CompanyHero

Reusable company hero component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CompanyHero
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page CompanyHerocomponent {
     }
 }
 
- + } diff --git a/app/pages/components/company-name-input.wrn b/app/pages/components/company-name-input.wrn index c2753168..b05406c8 100644 --- a/app/pages/components/company-name-input.wrn +++ b/app/pages/components/company-name-input.wrn @@ -10,10 +10,10 @@ page CompanyNameInputcomponent {
W WRNexusJS - +
-
forms component

CompanyNameInput

Reusable company name input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CompanyNameInput
+      
forms component

CompanyNameInput

Reusable company name input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CompanyNameInput
   label="CompanyName"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page CompanyNameInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/company-page-shell.wrn b/app/pages/components/company-page-shell.wrn index 932fe3f9..6be27be0 100644 --- a/app/pages/components/company-page-shell.wrn +++ b/app/pages/components/company-page-shell.wrn @@ -10,10 +10,10 @@ page CompanyPageShellcomponent {
W WRNexusJS - +
-
layout component

CompanyPageShell

Reusable company page shell component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CompanyPageShell
+      
layout component

CompanyPageShell

Reusable company page shell component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CompanyPageShell
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page CompanyPageShellcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/company-size-selector.wrn b/app/pages/components/company-size-selector.wrn index b741f2df..0372094c 100644 --- a/app/pages/components/company-size-selector.wrn +++ b/app/pages/components/company-size-selector.wrn @@ -10,10 +10,10 @@ page CompanySizeSelectorcomponent {
W WRNexusJS - +
-
forms component

CompanySizeSelector

Reusable company size selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CompanySizeSelector
+      
forms component

CompanySizeSelector

Reusable company size selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CompanySizeSelector
   label="CompanySize"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page CompanySizeSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/comparison-date-range-picker.wrn b/app/pages/components/comparison-date-range-picker.wrn index bcc10af3..bd0df6cd 100644 --- a/app/pages/components/comparison-date-range-picker.wrn +++ b/app/pages/components/comparison-date-range-picker.wrn @@ -10,10 +10,10 @@ page ComparisonDateRangePickercomponent {
W WRNexusJS - +
-
forms component

ComparisonDateRangePicker

Reusable comparison date range picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ComparisonDateRangePicker
+      
forms component

ComparisonDateRangePicker

Reusable comparison date range picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ComparisonDateRangePicker
   label="ComparisonDateRange"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page ComparisonDateRangePickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/comparison-table.wrn b/app/pages/components/comparison-table.wrn index e1be6a97..07c02a77 100644 --- a/app/pages/components/comparison-table.wrn +++ b/app/pages/components/comparison-table.wrn @@ -10,10 +10,10 @@ page ComparisonTablecomponent {
W WRNexusJS - +
-
data component

ComparisonTable

Reusable comparison table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ComparisonTable
+      
data component

ComparisonTable

Reusable comparison table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ComparisonTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page ComparisonTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/completion-meter.wrn b/app/pages/components/completion-meter.wrn index 3ab5cb31..d8cc1e5c 100644 --- a/app/pages/components/completion-meter.wrn +++ b/app/pages/components/completion-meter.wrn @@ -10,10 +10,10 @@ page CompletionMetercomponent {
W WRNexusJS - +
-
visualization component

CompletionMeter

Reusable completion meter component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CompletionMeter
+      
visualization component

CompletionMeter

Reusable completion meter component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CompletionMeter
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page CompletionMetercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/compliance-badge-list.wrn b/app/pages/components/compliance-badge-list.wrn index 22053b50..a1611f39 100644 --- a/app/pages/components/compliance-badge-list.wrn +++ b/app/pages/components/compliance-badge-list.wrn @@ -10,10 +10,10 @@ page ComplianceBadgeListcomponent {
W WRNexusJS - +
-
data component

ComplianceBadgeList

Reusable compliance badge list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ComplianceBadgeList
+      
data component

ComplianceBadgeList

Reusable compliance badge list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ComplianceBadgeList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page ComplianceBadgeListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/compliance-program-card.wrn b/app/pages/components/compliance-program-card.wrn index e98f29d7..b72e293c 100644 --- a/app/pages/components/compliance-program-card.wrn +++ b/app/pages/components/compliance-program-card.wrn @@ -10,10 +10,10 @@ page ComplianceProgramCardcomponent {
W WRNexusJS - +
-
content component

ComplianceProgramCard

Reusable compliance program card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ComplianceProgramCard
+      
content component

ComplianceProgramCard

Reusable compliance program card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ComplianceProgramCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ComplianceProgramCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/confirm-password-input.wrn b/app/pages/components/confirm-password-input.wrn index 0b5ccb86..b2b12fc5 100644 --- a/app/pages/components/confirm-password-input.wrn +++ b/app/pages/components/confirm-password-input.wrn @@ -10,10 +10,10 @@ page ConfirmPasswordInputcomponent {
W WRNexusJS - +
-
forms component

ConfirmPasswordInput

Reusable confirm password input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ConfirmPasswordInput
+      
forms component

ConfirmPasswordInput

Reusable confirm password input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ConfirmPasswordInput
   label="ConfirmPassword"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page ConfirmPasswordInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/confirmation-dialog.wrn b/app/pages/components/confirmation-dialog.wrn index d12d5b4c..7601d8e1 100644 --- a/app/pages/components/confirmation-dialog.wrn +++ b/app/pages/components/confirmation-dialog.wrn @@ -10,10 +10,10 @@ page ConfirmationDialogcomponent {
W WRNexusJS - +
-
overlays component

ConfirmationDialog

Reusable confirmation dialog component.

@wrnexus/ui 0.2.687 props1 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ConfirmationDialog
+      
overlays component

ConfirmationDialog

Reusable confirmation dialog component.

@wrnexus/ui 0.2.697 props1 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ConfirmationDialog
   title="Confirm action"
   description="Are you sure you want to continue?"
   confirmLabel="Confirm"
@@ -46,7 +46,7 @@ page ConfirmationDialogcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/connected-account-card.wrn b/app/pages/components/connected-account-card.wrn index dca637ae..3dbcc09e 100644 --- a/app/pages/components/connected-account-card.wrn +++ b/app/pages/components/connected-account-card.wrn @@ -10,10 +10,10 @@ page ConnectedAccountCardcomponent {
W WRNexusJS - +
-
content component

ConnectedAccountCard

Reusable connected account card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ConnectedAccountCard
+      
content component

ConnectedAccountCard

Reusable connected account card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ConnectedAccountCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ConnectedAccountCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/connection-card.wrn b/app/pages/components/connection-card.wrn index a654c824..b02228b3 100644 --- a/app/pages/components/connection-card.wrn +++ b/app/pages/components/connection-card.wrn @@ -10,10 +10,10 @@ page ConnectionCardcomponent {
W WRNexusJS - +
-
content component

ConnectionCard

Reusable connection card component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ConnectionCard
+      
content component

ConnectionCard

Reusable connection card component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ConnectionCard
   title="title"
   description="description"
   href="href"
@@ -36,7 +36,7 @@ page ConnectionCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/consent-timeline-preview.wrn b/app/pages/components/consent-timeline-preview.wrn index 4b2e9a86..e25b6b4c 100644 --- a/app/pages/components/consent-timeline-preview.wrn +++ b/app/pages/components/consent-timeline-preview.wrn @@ -10,10 +10,10 @@ page ConsentTimelinePreviewcomponent {
W WRNexusJS - +
-
content component

ConsentTimelinePreview

Reusable consent timeline preview component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ConsentTimelinePreview
+      
content component

ConsentTimelinePreview

Reusable consent timeline preview component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ConsentTimelinePreview
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -63,7 +63,7 @@ page ConsentTimelinePreviewcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/contact-card.wrn b/app/pages/components/contact-card.wrn index d7e65ad9..3a80a48d 100644 --- a/app/pages/components/contact-card.wrn +++ b/app/pages/components/contact-card.wrn @@ -10,10 +10,10 @@ page ContactCardcomponent {
W WRNexusJS - +
-
content component

ContactCard

Reusable contact card component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ContactCard
+      
content component

ContactCard

Reusable contact card component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ContactCard
   title="title"
   description="description"
   href="href"
@@ -36,7 +36,7 @@ page ContactCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/contact-cta.wrn b/app/pages/components/contact-cta.wrn index 293f40ef..f10eb40d 100644 --- a/app/pages/components/contact-cta.wrn +++ b/app/pages/components/contact-cta.wrn @@ -10,10 +10,10 @@ page ContactCTAcomponent {
W WRNexusJS - +
-
actions component

ContactCTA

Reusable contact c t a component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ContactCTA
+      
actions component

ContactCTA

Reusable contact c t a component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ContactCTA
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page ContactCTAcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/contact-form.wrn b/app/pages/components/contact-form.wrn index 181c0223..caacdade 100644 --- a/app/pages/components/contact-form.wrn +++ b/app/pages/components/contact-form.wrn @@ -10,10 +10,10 @@ page ContactFormcomponent {
W WRNexusJS - +
-
content component

ContactForm

Reusable contact form component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ContactForm
+      
content component

ContactForm

Reusable contact form component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ContactForm
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ContactFormcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/contact-hero.wrn b/app/pages/components/contact-hero.wrn index 70edb0dd..3a3e7c11 100644 --- a/app/pages/components/contact-hero.wrn +++ b/app/pages/components/contact-hero.wrn @@ -10,10 +10,10 @@ page ContactHerocomponent {
W WRNexusJS - +
-
layout component

ContactHero

Reusable contact hero component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ContactHero
+      
layout component

ContactHero

Reusable contact hero component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ContactHero
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ContactHerocomponent {
     }
 }
 
- + } diff --git a/app/pages/components/contact-page-shell.wrn b/app/pages/components/contact-page-shell.wrn index b3d6fdc8..e4cfd7a0 100644 --- a/app/pages/components/contact-page-shell.wrn +++ b/app/pages/components/contact-page-shell.wrn @@ -10,10 +10,10 @@ page ContactPageShellcomponent {
W WRNexusJS - +
-
layout component

ContactPageShell

Reusable contact page shell component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ContactPageShell
+      
layout component

ContactPageShell

Reusable contact page shell component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ContactPageShell
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ContactPageShellcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/contact-sales-banner.wrn b/app/pages/components/contact-sales-banner.wrn index 99757a3b..cf325c23 100644 --- a/app/pages/components/contact-sales-banner.wrn +++ b/app/pages/components/contact-sales-banner.wrn @@ -10,10 +10,10 @@ page ContactSalesBannercomponent {
W WRNexusJS - +
-
core component

ContactSalesBanner

Reusable contact sales banner component.

@wrnexus/ui 0.2.6813 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ContactSalesBanner
+      
core component

ContactSalesBanner

Reusable contact sales banner component.

@wrnexus/ui 0.2.6913 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ContactSalesBanner
   eyebrow="Enterprise identity"
   title="Ready to secure your next application?"
   description="description"
@@ -213,7 +213,7 @@ page ContactSalesBannercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/contact-sales-button.wrn b/app/pages/components/contact-sales-button.wrn index 8be8da2f..1c0016ed 100644 --- a/app/pages/components/contact-sales-button.wrn +++ b/app/pages/components/contact-sales-button.wrn @@ -10,10 +10,10 @@ page ContactSalesButtoncomponent {
W WRNexusJS - +
-
actions component

ContactSalesButton

Reusable contact sales button component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ContactSalesButton
+      
actions component

ContactSalesButton

Reusable contact sales button component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ContactSalesButton
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page ContactSalesButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/contact-sales-form.wrn b/app/pages/components/contact-sales-form.wrn index 0ea8ba9d..6b391b1e 100644 --- a/app/pages/components/contact-sales-form.wrn +++ b/app/pages/components/contact-sales-form.wrn @@ -10,10 +10,10 @@ page ContactSalesFormcomponent {
W WRNexusJS - +
-
content component

ContactSalesForm

Reusable contact sales form component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ContactSalesForm
+      
content component

ContactSalesForm

Reusable contact sales form component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ContactSalesForm
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ContactSalesFormcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/container.wrn b/app/pages/components/container.wrn index 872d534d..2703b01e 100644 --- a/app/pages/components/container.wrn +++ b/app/pages/components/container.wrn @@ -10,10 +10,10 @@ page Containercomponent {
W WRNexusJS - +
-
core component

Container

Reusable container component.

@wrnexus/ui 0.2.682 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Container
+      
core component

Container

Reusable container component.

@wrnexus/ui 0.2.692 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Container
   size="default"
 />

Legacy mount name: data-component="Container".

Props and attributes

PropTypeRequirementDefault
sizestringOptional"default"
classNamestringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Container.wrn

component Container {
   props {
@@ -27,7 +27,7 @@ page Containercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/context-menu.wrn b/app/pages/components/context-menu.wrn index 5e8aaa5a..97386192 100644 --- a/app/pages/components/context-menu.wrn +++ b/app/pages/components/context-menu.wrn @@ -10,10 +10,10 @@ page ContextMenucomponent {
W WRNexusJS - +
-
overlays component

ContextMenu

Reusable context menu component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ContextMenu
+      
overlays component

ContextMenu

Reusable context menu component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ContextMenu
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page ContextMenucomponent {
     }
 }
 
- + } diff --git a/app/pages/components/context-switcher.wrn b/app/pages/components/context-switcher.wrn index 55b9199f..dca56ef3 100644 --- a/app/pages/components/context-switcher.wrn +++ b/app/pages/components/context-switcher.wrn @@ -10,10 +10,10 @@ page ContextSwitchercomponent {
W WRNexusJS - +
-
content component

ContextSwitcher

Reusable context switcher component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ContextSwitcher
+      
content component

ContextSwitcher

Reusable context switcher component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ContextSwitcher
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ContextSwitchercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/conversation-list.wrn b/app/pages/components/conversation-list.wrn index a13b680e..6c2a8db6 100644 --- a/app/pages/components/conversation-list.wrn +++ b/app/pages/components/conversation-list.wrn @@ -10,10 +10,10 @@ page ConversationListcomponent {
W WRNexusJS - +
-
data component

ConversationList

Reusable conversation list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ConversationList
+      
data component

ConversationList

Reusable conversation list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ConversationList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page ConversationListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/conversation-preview.wrn b/app/pages/components/conversation-preview.wrn index fced5736..cf0e6002 100644 --- a/app/pages/components/conversation-preview.wrn +++ b/app/pages/components/conversation-preview.wrn @@ -10,10 +10,10 @@ page ConversationPreviewcomponent {
W WRNexusJS - +
-
content component

ConversationPreview

Reusable conversation preview component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ConversationPreview
+      
content component

ConversationPreview

Reusable conversation preview component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ConversationPreview
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -53,7 +53,7 @@ page ConversationPreviewcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/conversion-chart.wrn b/app/pages/components/conversion-chart.wrn index 7e6ebf0d..de54b088 100644 --- a/app/pages/components/conversion-chart.wrn +++ b/app/pages/components/conversion-chart.wrn @@ -10,10 +10,10 @@ page ConversionChartcomponent {
W WRNexusJS - +
-
visualization component

ConversionChart

Reusable conversion chart component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ConversionChart
+      
visualization component

ConversionChart

Reusable conversion chart component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ConversionChart
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page ConversionChartcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/cookie-banner.wrn b/app/pages/components/cookie-banner.wrn index fc4a14db..96a84889 100644 --- a/app/pages/components/cookie-banner.wrn +++ b/app/pages/components/cookie-banner.wrn @@ -10,10 +10,10 @@ page CookieBannercomponent {
W WRNexusJS - +
-
feedback component

CookieBanner

Reusable cookie banner component.

@wrnexus/ui 0.2.684 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CookieBanner
+      
feedback component

CookieBanner

Reusable cookie banner component.

@wrnexus/ui 0.2.694 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CookieBanner
   title="We use cookies"
   description="We use essential cookies and optional analytics to improve your experience."
   privacyHref="/privacy"
@@ -42,7 +42,7 @@ page CookieBannercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/cookie-category-list.wrn b/app/pages/components/cookie-category-list.wrn index b459106d..98c15f70 100644 --- a/app/pages/components/cookie-category-list.wrn +++ b/app/pages/components/cookie-category-list.wrn @@ -10,10 +10,10 @@ page CookieCategoryListcomponent {
W WRNexusJS - +
-
data component

CookieCategoryList

Reusable cookie category list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CookieCategoryList
+      
data component

CookieCategoryList

Reusable cookie category list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CookieCategoryList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page CookieCategoryListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/cookie-category-toggle.wrn b/app/pages/components/cookie-category-toggle.wrn index 81817789..07d5a5ca 100644 --- a/app/pages/components/cookie-category-toggle.wrn +++ b/app/pages/components/cookie-category-toggle.wrn @@ -10,10 +10,10 @@ page CookieCategoryTogglecomponent {
W WRNexusJS - +
-
forms component

CookieCategoryToggle

Reusable cookie category toggle component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CookieCategoryToggle
+      
forms component

CookieCategoryToggle

Reusable cookie category toggle component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CookieCategoryToggle
   label="CookieCategory"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page CookieCategoryTogglecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/cookie-consent.wrn b/app/pages/components/cookie-consent.wrn index 53952c5d..147aecc3 100644 --- a/app/pages/components/cookie-consent.wrn +++ b/app/pages/components/cookie-consent.wrn @@ -10,10 +10,10 @@ page CookieConsentcomponent {
W WRNexusJS - +
-
core component

CookieConsent

Reusable cookie consent component.

@wrnexus/ui 0.2.681 props0 slots2 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CookieConsent />

Legacy mount name: data-component="CookieConsent".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

This component does not declare a slot.

Events

  • click
  • change

Source contract

Installed source: components/CookieConsent.wrn

component CookieConsent {
+      
core component

CookieConsent

Reusable cookie consent component.

@wrnexus/ui 0.2.691 props0 slots2 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CookieConsent />

Legacy mount name: data-component="CookieConsent".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

This component does not declare a slot.

Events

  • click
  • change

Source contract

Installed source: components/CookieConsent.wrn

component CookieConsent {
     props {
         class: string = ""
     }
@@ -364,7 +364,7 @@ page CookieConsentcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/cookie-details-table.wrn b/app/pages/components/cookie-details-table.wrn index b7a34013..fdd41473 100644 --- a/app/pages/components/cookie-details-table.wrn +++ b/app/pages/components/cookie-details-table.wrn @@ -10,10 +10,10 @@ page CookieDetailsTablecomponent {
W WRNexusJS - +
-
data component

CookieDetailsTable

Reusable cookie details table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CookieDetailsTable
+      
data component

CookieDetailsTable

Reusable cookie details table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CookieDetailsTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page CookieDetailsTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/cookie-preferences-dialog.wrn b/app/pages/components/cookie-preferences-dialog.wrn index c572e442..05cf39f7 100644 --- a/app/pages/components/cookie-preferences-dialog.wrn +++ b/app/pages/components/cookie-preferences-dialog.wrn @@ -10,10 +10,10 @@ page CookiePreferencesDialogcomponent {
W WRNexusJS - +
-
overlays component

CookiePreferencesDialog

Reusable cookie preferences dialog component.

@wrnexus/ui 0.2.687 props0 slots2 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CookiePreferencesDialog
+      
overlays component

CookiePreferencesDialog

Reusable cookie preferences dialog component.

@wrnexus/ui 0.2.697 props0 slots2 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CookiePreferencesDialog
   title="Cookie preferences"
   description="Choose which optional cookies you allow. Essential cookies are always enabled."
   saveLabel="Save preferences"
@@ -70,7 +70,7 @@ page CookiePreferencesDialogcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/cookie-table.wrn b/app/pages/components/cookie-table.wrn index b9f8e193..b06700a8 100644 --- a/app/pages/components/cookie-table.wrn +++ b/app/pages/components/cookie-table.wrn @@ -10,10 +10,10 @@ page CookieTablecomponent {
W WRNexusJS - +
-
data component

CookieTable

Reusable cookie table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CookieTable
+      
data component

CookieTable

Reusable cookie table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CookieTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page CookieTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/coordinates-input.wrn b/app/pages/components/coordinates-input.wrn index ade8d7a8..26928c26 100644 --- a/app/pages/components/coordinates-input.wrn +++ b/app/pages/components/coordinates-input.wrn @@ -10,10 +10,10 @@ page CoordinatesInputcomponent {
W WRNexusJS - +
-
forms component

CoordinatesInput

Reusable coordinates input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CoordinatesInput
+      
forms component

CoordinatesInput

Reusable coordinates input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CoordinatesInput
   label="Coordinates"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page CoordinatesInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/coordinates-picker.wrn b/app/pages/components/coordinates-picker.wrn index f1ccae7e..ad56ecbd 100644 --- a/app/pages/components/coordinates-picker.wrn +++ b/app/pages/components/coordinates-picker.wrn @@ -10,10 +10,10 @@ page CoordinatesPickercomponent {
W WRNexusJS - +
-
forms component

CoordinatesPicker

Reusable coordinates picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CoordinatesPicker
+      
forms component

CoordinatesPicker

Reusable coordinates picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CoordinatesPicker
   label="Coordinates"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page CoordinatesPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/copy-button.wrn b/app/pages/components/copy-button.wrn index 4063300b..fdc1316e 100644 --- a/app/pages/components/copy-button.wrn +++ b/app/pages/components/copy-button.wrn @@ -10,10 +10,10 @@ page CopyButtoncomponent {
W WRNexusJS - +
-
actions component

CopyButton

Reusable copy button component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CopyButton
+      
actions component

CopyButton

Reusable copy button component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CopyButton
   label="Action"
   type="button"
   disabled="false"
@@ -30,7 +30,7 @@ page CopyButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/copy-code-button.wrn b/app/pages/components/copy-code-button.wrn index 91da3687..f9f116da 100644 --- a/app/pages/components/copy-code-button.wrn +++ b/app/pages/components/copy-code-button.wrn @@ -10,10 +10,10 @@ page CopyCodeButtoncomponent {
W WRNexusJS - +
-
actions component

CopyCodeButton

Reusable copy code button component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CopyCodeButton
+      
actions component

CopyCodeButton

Reusable copy code button component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CopyCodeButton
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page CopyCodeButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/copy-secret-field.wrn b/app/pages/components/copy-secret-field.wrn index b700c3d6..66d3970d 100644 --- a/app/pages/components/copy-secret-field.wrn +++ b/app/pages/components/copy-secret-field.wrn @@ -10,10 +10,10 @@ page CopySecretFieldcomponent {
W WRNexusJS - +
-
forms component

CopySecretField

Reusable copy secret field component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CopySecretField
+      
forms component

CopySecretField

Reusable copy secret field component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CopySecretField
   label="CopySecret"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page CopySecretFieldcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/cost-breakdown-chart.wrn b/app/pages/components/cost-breakdown-chart.wrn index 0cc16ed9..17f9dd44 100644 --- a/app/pages/components/cost-breakdown-chart.wrn +++ b/app/pages/components/cost-breakdown-chart.wrn @@ -10,10 +10,10 @@ page CostBreakdownChartcomponent {
W WRNexusJS - +
-
visualization component

CostBreakdownChart

Reusable cost breakdown chart component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CostBreakdownChart
+      
visualization component

CostBreakdownChart

Reusable cost breakdown chart component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CostBreakdownChart
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page CostBreakdownChartcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/cost-summary.wrn b/app/pages/components/cost-summary.wrn index bee5690a..d2317e8f 100644 --- a/app/pages/components/cost-summary.wrn +++ b/app/pages/components/cost-summary.wrn @@ -10,10 +10,10 @@ page CostSummarycomponent {
W WRNexusJS - +
-
content component

CostSummary

Reusable cost summary component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CostSummary
+      
content component

CostSummary

Reusable cost summary component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CostSummary
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page CostSummarycomponent {
     }
 }
 
- + } diff --git a/app/pages/components/counter.wrn b/app/pages/components/counter.wrn index 206477ab..e0892883 100644 --- a/app/pages/components/counter.wrn +++ b/app/pages/components/counter.wrn @@ -10,10 +10,10 @@ page Countercomponent {
W WRNexusJS - +
-
feedback component

Counter

Reusable counter component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Counter
+      
feedback component

Counter

Reusable counter component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Counter
   label="Status"
   variant="default"
 />

Legacy mount name: data-component="Counter".

Props and attributes

PropTypeRequirementDefault
labelstringOptional"Status"
variantstringOptional"default"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Counter.wrn

component Counter {
@@ -28,7 +28,7 @@ page Countercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/country-calling-code-input.wrn b/app/pages/components/country-calling-code-input.wrn index a35c7370..3da867dd 100644 --- a/app/pages/components/country-calling-code-input.wrn +++ b/app/pages/components/country-calling-code-input.wrn @@ -10,10 +10,10 @@ page CountryCallingCodeInputcomponent {
W WRNexusJS - +
-
forms component

CountryCallingCodeInput

Reusable country calling code input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CountryCallingCodeInput
+      
forms component

CountryCallingCodeInput

Reusable country calling code input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CountryCallingCodeInput
   label="CountryCallingCode"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page CountryCallingCodeInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/country-calling-code-selector.wrn b/app/pages/components/country-calling-code-selector.wrn index e0d5538d..6736dabe 100644 --- a/app/pages/components/country-calling-code-selector.wrn +++ b/app/pages/components/country-calling-code-selector.wrn @@ -10,10 +10,10 @@ page CountryCallingCodeSelectorcomponent {
W WRNexusJS - +
-
forms component

CountryCallingCodeSelector

Reusable country calling code selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CountryCallingCodeSelector
+      
forms component

CountryCallingCodeSelector

Reusable country calling code selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CountryCallingCodeSelector
   label="CountryCallingCode"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page CountryCallingCodeSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/country-selector.wrn b/app/pages/components/country-selector.wrn index 18d9702f..9869f539 100644 --- a/app/pages/components/country-selector.wrn +++ b/app/pages/components/country-selector.wrn @@ -10,10 +10,10 @@ page CountrySelectorcomponent {
W WRNexusJS - +
-
forms component

CountrySelector

Reusable country selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CountrySelector
+      
forms component

CountrySelector

Reusable country selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CountrySelector
   label="Country"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page CountrySelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/coupon-input.wrn b/app/pages/components/coupon-input.wrn index b1582363..2988f3bf 100644 --- a/app/pages/components/coupon-input.wrn +++ b/app/pages/components/coupon-input.wrn @@ -10,10 +10,10 @@ page CouponInputcomponent {
W WRNexusJS - +
-
forms component

CouponInput

Reusable coupon input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CouponInput
+      
forms component

CouponInput

Reusable coupon input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CouponInput
   label="Coupon"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page CouponInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/credit-amount-input.wrn b/app/pages/components/credit-amount-input.wrn index 42270c20..0bc65453 100644 --- a/app/pages/components/credit-amount-input.wrn +++ b/app/pages/components/credit-amount-input.wrn @@ -10,10 +10,10 @@ page CreditAmountInputcomponent {
W WRNexusJS - +
-
forms component

CreditAmountInput

Reusable credit amount input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CreditAmountInput
+      
forms component

CreditAmountInput

Reusable credit amount input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CreditAmountInput
   label="CreditAmount"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page CreditAmountInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/cron-builder.wrn b/app/pages/components/cron-builder.wrn index 069e8b89..6867515d 100644 --- a/app/pages/components/cron-builder.wrn +++ b/app/pages/components/cron-builder.wrn @@ -10,10 +10,10 @@ page CronBuildercomponent {
W WRNexusJS - +
-
content component

CronBuilder

Reusable cron builder component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CronBuilder
+      
content component

CronBuilder

Reusable cron builder component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CronBuilder
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page CronBuildercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/cron-input.wrn b/app/pages/components/cron-input.wrn index 92218548..4e24ccf0 100644 --- a/app/pages/components/cron-input.wrn +++ b/app/pages/components/cron-input.wrn @@ -10,10 +10,10 @@ page CronInputcomponent {
W WRNexusJS - +
-
forms component

CronInput

Reusable cron input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CronInput
+      
forms component

CronInput

Reusable cron input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CronInput
   label="Cron"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page CronInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/csv-upload.wrn b/app/pages/components/csv-upload.wrn index bfa4109f..cf2ad6e6 100644 --- a/app/pages/components/csv-upload.wrn +++ b/app/pages/components/csv-upload.wrn @@ -10,10 +10,10 @@ page CsvUploadcomponent {
W WRNexusJS - +
-
content component

CsvUpload

Reusable csv upload component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CsvUpload
+      
content component

CsvUpload

Reusable csv upload component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CsvUpload
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page CsvUploadcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/ctasection.wrn b/app/pages/components/ctasection.wrn index d9ec78b7..f08ed1a7 100644 --- a/app/pages/components/ctasection.wrn +++ b/app/pages/components/ctasection.wrn @@ -10,10 +10,10 @@ page CTASectioncomponent {
W WRNexusJS - +
-
layout component

CTASection

Reusable c t a section component.

@wrnexus/ui 0.2.688 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CTASection
+      
layout component

CTASection

Reusable c t a section component.

@wrnexus/ui 0.2.698 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CTASection
   eyebrow="Ready?"
   title="Start building today"
   description="description"
@@ -43,7 +43,7 @@ page CTASectioncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/currency-input.wrn b/app/pages/components/currency-input.wrn index b39a0015..6996c1ff 100644 --- a/app/pages/components/currency-input.wrn +++ b/app/pages/components/currency-input.wrn @@ -10,10 +10,10 @@ page CurrencyInputcomponent {
W WRNexusJS - +
-
forms component

CurrencyInput

Reusable currency input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CurrencyInput
+      
forms component

CurrencyInput

Reusable currency input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CurrencyInput
   label="Currency"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page CurrencyInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/currency-selector.wrn b/app/pages/components/currency-selector.wrn index 8d8be9e1..ebb92323 100644 --- a/app/pages/components/currency-selector.wrn +++ b/app/pages/components/currency-selector.wrn @@ -10,10 +10,10 @@ page CurrencySelectorcomponent {
W WRNexusJS - +
-
forms component

CurrencySelector

Reusable currency selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CurrencySelector
+      
forms component

CurrencySelector

Reusable currency selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CurrencySelector
   label="Currency"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page CurrencySelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/current-password-input.wrn b/app/pages/components/current-password-input.wrn index 4f9e2529..572143a1 100644 --- a/app/pages/components/current-password-input.wrn +++ b/app/pages/components/current-password-input.wrn @@ -10,10 +10,10 @@ page CurrentPasswordInputcomponent {
W WRNexusJS - +
-
forms component

CurrentPasswordInput

Reusable current password input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CurrentPasswordInput
+      
forms component

CurrentPasswordInput

Reusable current password input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CurrentPasswordInput
   label="CurrentPassword"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page CurrentPasswordInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/customer-logo.wrn b/app/pages/components/customer-logo.wrn index aa6ced90..0238d0f8 100644 --- a/app/pages/components/customer-logo.wrn +++ b/app/pages/components/customer-logo.wrn @@ -10,10 +10,10 @@ page CustomerLogocomponent {
W WRNexusJS - +
-
content component

CustomerLogo

Reusable customer logo component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CustomerLogo
+      
content component

CustomerLogo

Reusable customer logo component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CustomerLogo
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page CustomerLogocomponent {
     }
 }
 
- + } diff --git a/app/pages/components/customer-story-card.wrn b/app/pages/components/customer-story-card.wrn index 92ba3982..6e5e54d2 100644 --- a/app/pages/components/customer-story-card.wrn +++ b/app/pages/components/customer-story-card.wrn @@ -10,10 +10,10 @@ page CustomerStoryCardcomponent {
W WRNexusJS - +
-
content component

CustomerStoryCard

Reusable customer story card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CustomerStoryCard
+      
content component

CustomerStoryCard

Reusable customer story card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<CustomerStoryCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page CustomerStoryCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/danger-button.wrn b/app/pages/components/danger-button.wrn index b73e6d6c..f889a5c3 100644 --- a/app/pages/components/danger-button.wrn +++ b/app/pages/components/danger-button.wrn @@ -10,10 +10,10 @@ page DangerButtoncomponent {
W WRNexusJS - +
-
actions component

DangerButton

Reusable danger button component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DangerButton
+      
actions component

DangerButton

Reusable danger button component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DangerButton
   label="Action"
   type="button"
   disabled="false"
@@ -30,7 +30,7 @@ page DangerButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/data-protection-card.wrn b/app/pages/components/data-protection-card.wrn index fa9d8dd4..c29b8bd2 100644 --- a/app/pages/components/data-protection-card.wrn +++ b/app/pages/components/data-protection-card.wrn @@ -10,10 +10,10 @@ page DataProtectionCardcomponent {
W WRNexusJS - +
-
content component

DataProtectionCard

Reusable data protection card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DataProtectionCard
+      
content component

DataProtectionCard

Reusable data protection card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DataProtectionCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page DataProtectionCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/data-retention-table.wrn b/app/pages/components/data-retention-table.wrn index f5c21872..f6ef556a 100644 --- a/app/pages/components/data-retention-table.wrn +++ b/app/pages/components/data-retention-table.wrn @@ -10,10 +10,10 @@ page DataRetentionTablecomponent {
W WRNexusJS - +
-
data component

DataRetentionTable

Reusable data retention table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DataRetentionTable
+      
data component

DataRetentionTable

Reusable data retention table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DataRetentionTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page DataRetentionTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/data-table.wrn b/app/pages/components/data-table.wrn index ee9fcd6c..e1a1437a 100644 --- a/app/pages/components/data-table.wrn +++ b/app/pages/components/data-table.wrn @@ -10,10 +10,10 @@ page DataTablecomponent {
W WRNexusJS - +
-
data component

DataTable

Reusable data table component.

@wrnexus/ui 0.2.686 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DataTable
+      
data component

DataTable

Reusable data table component.

@wrnexus/ui 0.2.696 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DataTable
   caption="Data table"
   columns="[]"
   rows="[]"
@@ -43,7 +43,7 @@ page DataTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/date-input.wrn b/app/pages/components/date-input.wrn index 98d843f4..d21f3f88 100644 --- a/app/pages/components/date-input.wrn +++ b/app/pages/components/date-input.wrn @@ -10,10 +10,10 @@ page DateInputcomponent {
W WRNexusJS - +
-
forms component

DateInput

Reusable date input component.

@wrnexus/ui 0.2.6812 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DateInput
+      
forms component

DateInput

Reusable date input component.

@wrnexus/ui 0.2.6912 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DateInput
   id="id"
   name="name"
   label="Date"
@@ -45,7 +45,7 @@ page DateInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/date-picker.wrn b/app/pages/components/date-picker.wrn index 56ba2bc8..86b97f5a 100644 --- a/app/pages/components/date-picker.wrn +++ b/app/pages/components/date-picker.wrn @@ -10,10 +10,10 @@ page DatePickercomponent {
W WRNexusJS - +
-
forms component

DatePicker

Reusable date picker component.

@wrnexus/ui 0.2.688 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DatePicker
+      
forms component

DatePicker

Reusable date picker component.

@wrnexus/ui 0.2.698 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DatePicker
   id="date"
   name="date"
   label="Date"
@@ -35,7 +35,7 @@ page DatePickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/date-range-calendar.wrn b/app/pages/components/date-range-calendar.wrn index 223704ff..e6568ffb 100644 --- a/app/pages/components/date-range-calendar.wrn +++ b/app/pages/components/date-range-calendar.wrn @@ -10,10 +10,10 @@ page DateRangeCalendarcomponent {
W WRNexusJS - +
-
content component

DateRangeCalendar

Reusable date range calendar component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DateRangeCalendar
+      
content component

DateRangeCalendar

Reusable date range calendar component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DateRangeCalendar
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page DateRangeCalendarcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/date-range-picker.wrn b/app/pages/components/date-range-picker.wrn index 4fbddd1c..ab364bfe 100644 --- a/app/pages/components/date-range-picker.wrn +++ b/app/pages/components/date-range-picker.wrn @@ -10,10 +10,10 @@ page DateRangePickercomponent {
W WRNexusJS - +
-
forms component

DateRangePicker

Reusable date range picker component.

@wrnexus/ui 0.2.684 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DateRangePicker
+      
forms component

DateRangePicker

Reusable date range picker component.

@wrnexus/ui 0.2.694 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DateRangePicker
   label="Date range"
   startName="startDate"
   endName="endDate"
@@ -35,7 +35,7 @@ page DateRangePickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/date-range-slider.wrn b/app/pages/components/date-range-slider.wrn index 719c4562..0923abc4 100644 --- a/app/pages/components/date-range-slider.wrn +++ b/app/pages/components/date-range-slider.wrn @@ -10,10 +10,10 @@ page DateRangeSlidercomponent {
W WRNexusJS - +
-
content component

DateRangeSlider

Reusable date range slider component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DateRangeSlider
+      
content component

DateRangeSlider

Reusable date range slider component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DateRangeSlider
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page DateRangeSlidercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/date-time-input.wrn b/app/pages/components/date-time-input.wrn index b2dd6b6c..d1474334 100644 --- a/app/pages/components/date-time-input.wrn +++ b/app/pages/components/date-time-input.wrn @@ -10,10 +10,10 @@ page DateTimeInputcomponent {
W WRNexusJS - +
-
forms component

DateTimeInput

Reusable date time input component.

@wrnexus/ui 0.2.6812 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DateTimeInput
+      
forms component

DateTimeInput

Reusable date time input component.

@wrnexus/ui 0.2.6912 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DateTimeInput
   id="id"
   name="name"
   label="DateTime"
@@ -45,7 +45,7 @@ page DateTimeInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/date-time-picker.wrn b/app/pages/components/date-time-picker.wrn index cb514d2d..3e8d8007 100644 --- a/app/pages/components/date-time-picker.wrn +++ b/app/pages/components/date-time-picker.wrn @@ -10,10 +10,10 @@ page DateTimePickercomponent {
W WRNexusJS - +
-
forms component

DateTimePicker

Reusable date time picker component.

@wrnexus/ui 0.2.689 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DateTimePicker
+      
forms component

DateTimePicker

Reusable date time picker component.

@wrnexus/ui 0.2.699 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DateTimePicker
   id="datetime-picker"
   name="datetime"
   label="Date and time"
@@ -39,7 +39,7 @@ page DateTimePickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/date-time-range-picker.wrn b/app/pages/components/date-time-range-picker.wrn index a11d4998..a70e4809 100644 --- a/app/pages/components/date-time-range-picker.wrn +++ b/app/pages/components/date-time-range-picker.wrn @@ -10,10 +10,10 @@ page DateTimeRangePickercomponent {
W WRNexusJS - +
-
forms component

DateTimeRangePicker

Reusable date time range picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DateTimeRangePicker
+      
forms component

DateTimeRangePicker

Reusable date time range picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DateTimeRangePicker
   label="DateTimeRange"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page DateTimeRangePickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/decimal-input.wrn b/app/pages/components/decimal-input.wrn index 3bdd4334..29255b94 100644 --- a/app/pages/components/decimal-input.wrn +++ b/app/pages/components/decimal-input.wrn @@ -10,10 +10,10 @@ page DecimalInputcomponent {
W WRNexusJS - +
-
forms component

DecimalInput

Reusable decimal input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DecimalInput
+      
forms component

DecimalInput

Reusable decimal input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DecimalInput
   label="Decimal"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page DecimalInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/definition-list.wrn b/app/pages/components/definition-list.wrn index 82f08440..eb3ea5dd 100644 --- a/app/pages/components/definition-list.wrn +++ b/app/pages/components/definition-list.wrn @@ -10,10 +10,10 @@ page DefinitionListcomponent {
W WRNexusJS - +
-
data component

DefinitionList

Reusable definition list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DefinitionList
+      
data component

DefinitionList

Reusable definition list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DefinitionList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page DefinitionListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/delete-confirmation-dialog.wrn b/app/pages/components/delete-confirmation-dialog.wrn index d5db35ca..6417b5f9 100644 --- a/app/pages/components/delete-confirmation-dialog.wrn +++ b/app/pages/components/delete-confirmation-dialog.wrn @@ -10,10 +10,10 @@ page DeleteConfirmationDialogcomponent {
W WRNexusJS - +
-
overlays component

DeleteConfirmationDialog

Reusable delete confirmation dialog component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DeleteConfirmationDialog
+      
overlays component

DeleteConfirmationDialog

Reusable delete confirmation dialog component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DeleteConfirmationDialog
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page DeleteConfirmationDialogcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/delivery-preview.wrn b/app/pages/components/delivery-preview.wrn index 6fd943dc..3db4147f 100644 --- a/app/pages/components/delivery-preview.wrn +++ b/app/pages/components/delivery-preview.wrn @@ -10,10 +10,10 @@ page DeliveryPreviewcomponent {
W WRNexusJS - +
-
content component

DeliveryPreview

Reusable delivery preview component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DeliveryPreview
+      
content component

DeliveryPreview

Reusable delivery preview component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DeliveryPreview
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page DeliveryPreviewcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/delivery-status-chart.wrn b/app/pages/components/delivery-status-chart.wrn index 1911fbe6..c9242d68 100644 --- a/app/pages/components/delivery-status-chart.wrn +++ b/app/pages/components/delivery-status-chart.wrn @@ -10,10 +10,10 @@ page DeliveryStatusChartcomponent {
W WRNexusJS - +
-
visualization component

DeliveryStatusChart

Reusable delivery status chart component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DeliveryStatusChart
+      
visualization component

DeliveryStatusChart

Reusable delivery status chart component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DeliveryStatusChart
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page DeliveryStatusChartcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/delivery-status-timeline.wrn b/app/pages/components/delivery-status-timeline.wrn index c313b695..045816a5 100644 --- a/app/pages/components/delivery-status-timeline.wrn +++ b/app/pages/components/delivery-status-timeline.wrn @@ -10,10 +10,10 @@ page DeliveryStatusTimelinecomponent {
W WRNexusJS - +
-
visualization component

DeliveryStatusTimeline

Reusable delivery status timeline component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DeliveryStatusTimeline
+      
visualization component

DeliveryStatusTimeline

Reusable delivery status timeline component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DeliveryStatusTimeline
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page DeliveryStatusTimelinecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/demo-request-form.wrn b/app/pages/components/demo-request-form.wrn index 03a3aaf4..873bea14 100644 --- a/app/pages/components/demo-request-form.wrn +++ b/app/pages/components/demo-request-form.wrn @@ -10,10 +10,10 @@ page DemoRequestFormcomponent {
W WRNexusJS - +
-
content component

DemoRequestForm

Reusable demo request form component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DemoRequestForm
+      
content component

DemoRequestForm

Reusable demo request form component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DemoRequestForm
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page DemoRequestFormcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/department-input.wrn b/app/pages/components/department-input.wrn index c15641b5..e191769b 100644 --- a/app/pages/components/department-input.wrn +++ b/app/pages/components/department-input.wrn @@ -10,10 +10,10 @@ page DepartmentInputcomponent {
W WRNexusJS - +
-
forms component

DepartmentInput

Reusable department input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DepartmentInput
+      
forms component

DepartmentInput

Reusable department input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DepartmentInput
   label="Department"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page DepartmentInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/deprecated-feature-alert.wrn b/app/pages/components/deprecated-feature-alert.wrn index 1433b280..2ae4f71d 100644 --- a/app/pages/components/deprecated-feature-alert.wrn +++ b/app/pages/components/deprecated-feature-alert.wrn @@ -10,10 +10,10 @@ page DeprecatedFeatureAlertcomponent {
W WRNexusJS - +
-
feedback component

DeprecatedFeatureAlert

Reusable deprecated feature alert component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DeprecatedFeatureAlert
+      
feedback component

DeprecatedFeatureAlert

Reusable deprecated feature alert component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DeprecatedFeatureAlert
   label="DeprecatedFeature"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page DeprecatedFeatureAlertcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/description-list.wrn b/app/pages/components/description-list.wrn index 0c0711de..99e4a7a1 100644 --- a/app/pages/components/description-list.wrn +++ b/app/pages/components/description-list.wrn @@ -10,10 +10,10 @@ page DescriptionListcomponent {
W WRNexusJS - +
-
data component

DescriptionList

Reusable description list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DescriptionList
+      
data component

DescriptionList

Reusable description list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DescriptionList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page DescriptionListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/desktop-navigation.wrn b/app/pages/components/desktop-navigation.wrn index d83a5be1..09962ad3 100644 --- a/app/pages/components/desktop-navigation.wrn +++ b/app/pages/components/desktop-navigation.wrn @@ -10,10 +10,10 @@ page DesktopNavigationcomponent {
W WRNexusJS - +
-
layout component

DesktopNavigation

Reusable desktop navigation component.

@wrnexus/ui 0.2.683 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DesktopNavigation
+      
layout component

DesktopNavigation

Reusable desktop navigation component.

@wrnexus/ui 0.2.693 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DesktopNavigation
   label="Primary navigation"
   items="[]"
 />

Legacy mount name: data-component="DesktopNavigation".

Props and attributes

PropTypeRequirementDefault
labelstringOptional"Primary navigation"
itemsstringOptional[]
classstringOptional""

Slots

This component does not declare a slot.

Events

This component does not declare a custom event.

Source contract

Installed source: components/DesktopNavigation.wrn

component DesktopNavigation {
@@ -31,7 +31,7 @@ page DesktopNavigationcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/developer-cta.wrn b/app/pages/components/developer-cta.wrn index e92a1d8e..dbbeddf7 100644 --- a/app/pages/components/developer-cta.wrn +++ b/app/pages/components/developer-cta.wrn @@ -10,10 +10,10 @@ page DeveloperCTAcomponent {
W WRNexusJS - +
-
actions component

DeveloperCTA

Reusable developer c t a component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DeveloperCTA
+      
actions component

DeveloperCTA

Reusable developer c t a component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DeveloperCTA
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page DeveloperCTAcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/developer-hero.wrn b/app/pages/components/developer-hero.wrn index d2857b2a..d128c8b6 100644 --- a/app/pages/components/developer-hero.wrn +++ b/app/pages/components/developer-hero.wrn @@ -10,10 +10,10 @@ page DeveloperHerocomponent {
W WRNexusJS - +
-
layout component

DeveloperHero

Reusable developer hero component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DeveloperHero
+      
layout component

DeveloperHero

Reusable developer hero component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DeveloperHero
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page DeveloperHerocomponent {
     }
 }
 
- + } diff --git a/app/pages/components/developer-page-shell.wrn b/app/pages/components/developer-page-shell.wrn index fc88ad38..ea8d4058 100644 --- a/app/pages/components/developer-page-shell.wrn +++ b/app/pages/components/developer-page-shell.wrn @@ -10,10 +10,10 @@ page DeveloperPageShellcomponent {
W WRNexusJS - +
-
layout component

DeveloperPageShell

Reusable developer page shell component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DeveloperPageShell
+      
layout component

DeveloperPageShell

Reusable developer page shell component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DeveloperPageShell
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page DeveloperPageShellcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/developer-search.wrn b/app/pages/components/developer-search.wrn index f9bc4da4..f0e533f4 100644 --- a/app/pages/components/developer-search.wrn +++ b/app/pages/components/developer-search.wrn @@ -10,10 +10,10 @@ page DeveloperSearchcomponent {
W WRNexusJS - +
-
content component

DeveloperSearch

Reusable developer search component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DeveloperSearch
+      
content component

DeveloperSearch

Reusable developer search component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DeveloperSearch
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page DeveloperSearchcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/developers-mega-menu.wrn b/app/pages/components/developers-mega-menu.wrn index 09aa0f1d..5b6df777 100644 --- a/app/pages/components/developers-mega-menu.wrn +++ b/app/pages/components/developers-mega-menu.wrn @@ -10,10 +10,10 @@ page DevelopersMegaMenucomponent {
W WRNexusJS - +
-
core component

DevelopersMegaMenu

Reusable developers mega menu component.

@wrnexus/ui 0.2.681 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DevelopersMegaMenu />

Legacy mount name: data-component="DevelopersMegaMenu".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

This component does not declare a slot.

Events

This component does not declare a custom event.

Source contract

Installed source: components/DevelopersMegaMenu.wrn

component DevelopersMegaMenu {
+      
core component

DevelopersMegaMenu

Reusable developers mega menu component.

@wrnexus/ui 0.2.691 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DevelopersMegaMenu />

Legacy mount name: data-component="DevelopersMegaMenu".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

This component does not declare a slot.

Events

This component does not declare a custom event.

Source contract

Installed source: components/DevelopersMegaMenu.wrn

component DevelopersMegaMenu {
     props {
         class: string = ""
     }
@@ -413,7 +413,7 @@ page DevelopersMegaMenucomponent {
     }
 }
 
- + } diff --git a/app/pages/components/developers-menu.wrn b/app/pages/components/developers-menu.wrn index 834d78ea..64723888 100644 --- a/app/pages/components/developers-menu.wrn +++ b/app/pages/components/developers-menu.wrn @@ -10,10 +10,10 @@ page DevelopersMenucomponent {
W WRNexusJS - +
-
overlays component

DevelopersMenu

Reusable developers menu component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DevelopersMenu
+      
overlays component

DevelopersMenu

Reusable developers menu component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DevelopersMenu
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page DevelopersMenucomponent {
     }
 }
 
- + } diff --git a/app/pages/components/device-card.wrn b/app/pages/components/device-card.wrn index 70fa3f54..80d5a6fb 100644 --- a/app/pages/components/device-card.wrn +++ b/app/pages/components/device-card.wrn @@ -10,10 +10,10 @@ page DeviceCardcomponent {
W WRNexusJS - +
-
content component

DeviceCard

Reusable device card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DeviceCard
+      
content component

DeviceCard

Reusable device card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DeviceCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page DeviceCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/disclosure.wrn b/app/pages/components/disclosure.wrn index adb7e0db..c8f4b300 100644 --- a/app/pages/components/disclosure.wrn +++ b/app/pages/components/disclosure.wrn @@ -10,10 +10,10 @@ page disclosurecomponent {
W WRNexusJS - +
-
core component

disclosure

Reusable disclosure component.

@wrnexus/ui 0.2.682 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<disclosure
+      
core component

disclosure

Reusable disclosure component.

@wrnexus/ui 0.2.692 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<disclosure
   summary="Details"
 />

Legacy mount name: data-component="disclosure".

Props and attributes

PropTypeRequirementDefault
summarystringOptional"Details"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/disclosure.wrn

// Expand/collapse section using native <details> (no JS).
 component Disclosure {
@@ -32,7 +32,7 @@ component Disclosure {
     }
 }
 
- + } diff --git a/app/pages/components/discount-input.wrn b/app/pages/components/discount-input.wrn index 2c8eb5af..e6fafdbf 100644 --- a/app/pages/components/discount-input.wrn +++ b/app/pages/components/discount-input.wrn @@ -10,10 +10,10 @@ page DiscountInputcomponent {
W WRNexusJS - +
-
forms component

DiscountInput

Reusable discount input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DiscountInput
+      
forms component

DiscountInput

Reusable discount input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DiscountInput
   label="Discount"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page DiscountInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/display-heading.wrn b/app/pages/components/display-heading.wrn index 9d505656..88345541 100644 --- a/app/pages/components/display-heading.wrn +++ b/app/pages/components/display-heading.wrn @@ -10,10 +10,10 @@ page DisplayHeadingcomponent {
W WRNexusJS - +
-
core component

DisplayHeading

Reusable display heading component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DisplayHeading
+      
core component

DisplayHeading

Reusable display heading component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DisplayHeading
   text="text"
   align="start"
 />

Legacy mount name: data-component="DisplayHeading".

Props and attributes

PropTypeRequirementDefault
textstringOptional""
alignstringOptional"start"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/DisplayHeading.wrn

component DisplayHeading {
@@ -28,7 +28,7 @@ page DisplayHeadingcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/display-name-input.wrn b/app/pages/components/display-name-input.wrn index cdbf41ec..3f983668 100644 --- a/app/pages/components/display-name-input.wrn +++ b/app/pages/components/display-name-input.wrn @@ -10,10 +10,10 @@ page DisplayNameInputcomponent {
W WRNexusJS - +
-
forms component

DisplayNameInput

Reusable display name input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DisplayNameInput
+      
forms component

DisplayNameInput

Reusable display name input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DisplayNameInput
   label="DisplayName"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page DisplayNameInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/divider.wrn b/app/pages/components/divider.wrn index 84f8dfd7..7d990540 100644 --- a/app/pages/components/divider.wrn +++ b/app/pages/components/divider.wrn @@ -10,10 +10,10 @@ page Dividercomponent {
W WRNexusJS - +
-
core component

Divider

Reusable divider component.

@wrnexus/ui 0.2.681 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Divider />

Legacy mount name: data-component="Divider".

Props and attributes

PropTypeRequirementDefault
classNamestringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Divider.wrn

component Divider {
+      
core component

Divider

Reusable divider component.

@wrnexus/ui 0.2.691 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Divider />

Legacy mount name: data-component="Divider".

Props and attributes

PropTypeRequirementDefault
classNamestringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Divider.wrn

component Divider {
   props {
     className = ""
   }
@@ -24,7 +24,7 @@ page Dividercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/do-not-sell-link.wrn b/app/pages/components/do-not-sell-link.wrn index 9a51be1e..4739a564 100644 --- a/app/pages/components/do-not-sell-link.wrn +++ b/app/pages/components/do-not-sell-link.wrn @@ -10,10 +10,10 @@ page DoNotSellLinkcomponent {
W WRNexusJS - +
-
actions component

DoNotSellLink

Reusable do not sell link component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DoNotSellLink
+      
actions component

DoNotSellLink

Reusable do not sell link component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DoNotSellLink
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page DoNotSellLinkcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/document-preview.wrn b/app/pages/components/document-preview.wrn index 716dce4c..47060055 100644 --- a/app/pages/components/document-preview.wrn +++ b/app/pages/components/document-preview.wrn @@ -10,10 +10,10 @@ page DocumentPreviewcomponent {
W WRNexusJS - +
-
content component

DocumentPreview

Reusable document preview component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DocumentPreview
+      
content component

DocumentPreview

Reusable document preview component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DocumentPreview
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page DocumentPreviewcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/document-upload.wrn b/app/pages/components/document-upload.wrn index d1ecdc94..ffb44f65 100644 --- a/app/pages/components/document-upload.wrn +++ b/app/pages/components/document-upload.wrn @@ -10,10 +10,10 @@ page DocumentUploadcomponent {
W WRNexusJS - +
-
content component

DocumentUpload

Reusable document upload component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DocumentUpload
+      
content component

DocumentUpload

Reusable document upload component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DocumentUpload
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page DocumentUploadcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/domain-input.wrn b/app/pages/components/domain-input.wrn index ef92817f..5fcfb8e7 100644 --- a/app/pages/components/domain-input.wrn +++ b/app/pages/components/domain-input.wrn @@ -10,10 +10,10 @@ page DomainInputcomponent {
W WRNexusJS - +
-
forms component

DomainInput

Reusable domain input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DomainInput
+      
forms component

DomainInput

Reusable domain input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DomainInput
   label="Domain"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page DomainInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/donut-chart.wrn b/app/pages/components/donut-chart.wrn index 5350c48d..4700c223 100644 --- a/app/pages/components/donut-chart.wrn +++ b/app/pages/components/donut-chart.wrn @@ -10,10 +10,10 @@ page DonutChartcomponent {
W WRNexusJS - +
-
visualization component

DonutChart

Reusable donut chart component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DonutChart
+      
visualization component

DonutChart

Reusable donut chart component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DonutChart
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page DonutChartcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/download-action.wrn b/app/pages/components/download-action.wrn index f7026eea..cf5783f2 100644 --- a/app/pages/components/download-action.wrn +++ b/app/pages/components/download-action.wrn @@ -10,10 +10,10 @@ page DownloadActioncomponent {
W WRNexusJS - +
-
actions component

DownloadAction

Reusable download action component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DownloadAction
+      
actions component

DownloadAction

Reusable download action component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DownloadAction
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page DownloadActioncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/download-button.wrn b/app/pages/components/download-button.wrn index f73318d2..ab15e645 100644 --- a/app/pages/components/download-button.wrn +++ b/app/pages/components/download-button.wrn @@ -10,10 +10,10 @@ page DownloadButtoncomponent {
W WRNexusJS - +
-
actions component

DownloadButton

Reusable download button component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DownloadButton
+      
actions component

DownloadButton

Reusable download button component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DownloadButton
   label="Action"
   type="button"
   disabled="false"
@@ -30,7 +30,7 @@ page DownloadButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/download-gate-form.wrn b/app/pages/components/download-gate-form.wrn index 14760ac2..2abf9fc5 100644 --- a/app/pages/components/download-gate-form.wrn +++ b/app/pages/components/download-gate-form.wrn @@ -10,10 +10,10 @@ page DownloadGateFormcomponent {
W WRNexusJS - +
-
content component

DownloadGateForm

Reusable download gate form component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DownloadGateForm
+      
content component

DownloadGateForm

Reusable download gate form component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DownloadGateForm
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page DownloadGateFormcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/download-policy-button.wrn b/app/pages/components/download-policy-button.wrn index 53fb1d88..08069d95 100644 --- a/app/pages/components/download-policy-button.wrn +++ b/app/pages/components/download-policy-button.wrn @@ -10,10 +10,10 @@ page DownloadPolicyButtoncomponent {
W WRNexusJS - +
-
actions component

DownloadPolicyButton

Reusable download policy button component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DownloadPolicyButton
+      
actions component

DownloadPolicyButton

Reusable download policy button component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DownloadPolicyButton
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page DownloadPolicyButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/download-resource-form.wrn b/app/pages/components/download-resource-form.wrn index 1fb23096..fa4a9370 100644 --- a/app/pages/components/download-resource-form.wrn +++ b/app/pages/components/download-resource-form.wrn @@ -10,10 +10,10 @@ page DownloadResourceFormcomponent {
W WRNexusJS - +
-
content component

DownloadResourceForm

Reusable download resource form component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DownloadResourceForm
+      
content component

DownloadResourceForm

Reusable download resource form component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DownloadResourceForm
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page DownloadResourceFormcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/drawer.wrn b/app/pages/components/drawer.wrn index ebd0e5ca..479aff46 100644 --- a/app/pages/components/drawer.wrn +++ b/app/pages/components/drawer.wrn @@ -10,10 +10,10 @@ page Drawercomponent {
W WRNexusJS - +
-
core component

Drawer

Reusable drawer component.

@wrnexus/ui 0.2.684 props1 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Drawer
+      
core component

Drawer

Reusable drawer component.

@wrnexus/ui 0.2.694 props1 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Drawer
   title="Panel"
   open="false"
   side="right"
@@ -42,7 +42,7 @@ page Drawercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/dropdown-menu.wrn b/app/pages/components/dropdown-menu.wrn index 848439a3..656d0ff6 100644 --- a/app/pages/components/dropdown-menu.wrn +++ b/app/pages/components/dropdown-menu.wrn @@ -10,10 +10,10 @@ page DropdownMenucomponent {
W WRNexusJS - +
-
overlays component

DropdownMenu

Reusable dropdown menu component.

@wrnexus/ui 0.2.682 props1 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DropdownMenu
+      
overlays component

DropdownMenu

Reusable dropdown menu component.

@wrnexus/ui 0.2.692 props1 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DropdownMenu
   label="Menu"
 />

Legacy mount name: data-component="DropdownMenu".

Props and attributes

PropTypeRequirementDefault
classstringOptional""
labelstringOptional"Menu"

Slots

  • default

Events

  • click

Source contract

Installed source: components/DropdownMenu.wrn

component DropdownMenu {
   props {
@@ -32,7 +32,7 @@ page DropdownMenucomponent {
     }
 }
 
- + } diff --git a/app/pages/components/dropdown-navigation.wrn b/app/pages/components/dropdown-navigation.wrn index 9c32e823..3ad6a479 100644 --- a/app/pages/components/dropdown-navigation.wrn +++ b/app/pages/components/dropdown-navigation.wrn @@ -10,10 +10,10 @@ page DropdownNavigationcomponent {
W WRNexusJS - +
-
layout component

DropdownNavigation

Reusable dropdown navigation component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DropdownNavigation
+      
layout component

DropdownNavigation

Reusable dropdown navigation component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DropdownNavigation
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page DropdownNavigationcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/duration-input.wrn b/app/pages/components/duration-input.wrn index 696fbe66..eabe09dc 100644 --- a/app/pages/components/duration-input.wrn +++ b/app/pages/components/duration-input.wrn @@ -10,10 +10,10 @@ page DurationInputcomponent {
W WRNexusJS - +
-
forms component

DurationInput

Reusable duration input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DurationInput
+      
forms component

DurationInput

Reusable duration input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DurationInput
   label="Duration"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page DurationInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/duration-picker.wrn b/app/pages/components/duration-picker.wrn index 3ebc8274..60ea8bc1 100644 --- a/app/pages/components/duration-picker.wrn +++ b/app/pages/components/duration-picker.wrn @@ -10,10 +10,10 @@ page DurationPickercomponent {
W WRNexusJS - +
-
forms component

DurationPicker

Reusable duration picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DurationPicker
+      
forms component

DurationPicker

Reusable duration picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DurationPicker
   label="Duration"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page DurationPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/duration-slider.wrn b/app/pages/components/duration-slider.wrn index d8c89840..7794c736 100644 --- a/app/pages/components/duration-slider.wrn +++ b/app/pages/components/duration-slider.wrn @@ -10,10 +10,10 @@ page DurationSlidercomponent {
W WRNexusJS - +
-
content component

DurationSlider

Reusable duration slider component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DurationSlider
+      
content component

DurationSlider

Reusable duration slider component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<DurationSlider
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page DurationSlidercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/elevated-card.wrn b/app/pages/components/elevated-card.wrn index 1e5dcdd8..9b9f15a5 100644 --- a/app/pages/components/elevated-card.wrn +++ b/app/pages/components/elevated-card.wrn @@ -10,10 +10,10 @@ page ElevatedCardcomponent {
W WRNexusJS - +
-
content component

ElevatedCard

Reusable elevated card component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ElevatedCard
+      
content component

ElevatedCard

Reusable elevated card component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ElevatedCard
   title="title"
   description="description"
   href="href"
@@ -36,7 +36,7 @@ page ElevatedCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/email-body-editor.wrn b/app/pages/components/email-body-editor.wrn index 3327059b..d5143ca6 100644 --- a/app/pages/components/email-body-editor.wrn +++ b/app/pages/components/email-body-editor.wrn @@ -10,10 +10,10 @@ page EmailBodyEditorcomponent {
W WRNexusJS - +
-
forms component

EmailBodyEditor

Reusable email body editor component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EmailBodyEditor
+      
forms component

EmailBodyEditor

Reusable email body editor component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EmailBodyEditor
   label="EmailBody"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page EmailBodyEditorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/email-composer.wrn b/app/pages/components/email-composer.wrn index fda00fc2..d38ae2c8 100644 --- a/app/pages/components/email-composer.wrn +++ b/app/pages/components/email-composer.wrn @@ -10,10 +10,10 @@ page EmailComposercomponent {
W WRNexusJS - +
-
content component

EmailComposer

Reusable email composer component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EmailComposer
+      
content component

EmailComposer

Reusable email composer component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EmailComposer
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page EmailComposercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/email-input.wrn b/app/pages/components/email-input.wrn index 8cefcd6b..24663e2d 100644 --- a/app/pages/components/email-input.wrn +++ b/app/pages/components/email-input.wrn @@ -10,10 +10,10 @@ page EmailInputcomponent {
W WRNexusJS - +
-
forms component

EmailInput

Reusable email input component.

@wrnexus/ui 0.2.6812 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EmailInput
+      
forms component

EmailInput

Reusable email input component.

@wrnexus/ui 0.2.6912 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EmailInput
   id="id"
   name="name"
   label="Email"
@@ -45,7 +45,7 @@ page EmailInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/emoji-picker.wrn b/app/pages/components/emoji-picker.wrn index 6947119c..1d028b34 100644 --- a/app/pages/components/emoji-picker.wrn +++ b/app/pages/components/emoji-picker.wrn @@ -10,10 +10,10 @@ page EmojiPickercomponent {
W WRNexusJS - +
-
forms component

EmojiPicker

Reusable emoji picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EmojiPicker
+      
forms component

EmojiPicker

Reusable emoji picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EmojiPicker
   label="Emoji"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page EmojiPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/empty-state.wrn b/app/pages/components/empty-state.wrn index 6c51452b..1a00af1b 100644 --- a/app/pages/components/empty-state.wrn +++ b/app/pages/components/empty-state.wrn @@ -10,10 +10,10 @@ page EmptyStatecomponent {
W WRNexusJS - +
-
feedback component

EmptyState

Reusable empty state component.

@wrnexus/ui 0.2.6812 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EmptyState
+      
feedback component

EmptyState

Reusable empty state component.

@wrnexus/ui 0.2.6912 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EmptyState
   eyebrow="eyebrow"
   title="Nothing found"
   description="description"
@@ -184,7 +184,7 @@ page EmptyStatecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/encryption-diagram.wrn b/app/pages/components/encryption-diagram.wrn index 3c5522ef..44ead878 100644 --- a/app/pages/components/encryption-diagram.wrn +++ b/app/pages/components/encryption-diagram.wrn @@ -10,10 +10,10 @@ page EncryptionDiagramcomponent {
W WRNexusJS - +
-
visualization component

EncryptionDiagram

Reusable encryption diagram component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EncryptionDiagram
+      
visualization component

EncryptionDiagram

Reusable encryption diagram component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EncryptionDiagram
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page EncryptionDiagramcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/enterprise-cta.wrn b/app/pages/components/enterprise-cta.wrn index 60115be2..1535c45d 100644 --- a/app/pages/components/enterprise-cta.wrn +++ b/app/pages/components/enterprise-cta.wrn @@ -10,10 +10,10 @@ page EnterpriseCTAcomponent {
W WRNexusJS - +
-
actions component

EnterpriseCTA

Reusable enterprise c t a component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EnterpriseCTA
+      
actions component

EnterpriseCTA

Reusable enterprise c t a component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EnterpriseCTA
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page EnterpriseCTAcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/enterprise-hero.wrn b/app/pages/components/enterprise-hero.wrn index ee3fcb96..09082ca6 100644 --- a/app/pages/components/enterprise-hero.wrn +++ b/app/pages/components/enterprise-hero.wrn @@ -10,10 +10,10 @@ page EnterpriseHerocomponent {
W WRNexusJS - +
-
layout component

EnterpriseHero

Reusable enterprise hero component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EnterpriseHero
+      
layout component

EnterpriseHero

Reusable enterprise hero component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EnterpriseHero
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page EnterpriseHerocomponent {
     }
 }
 
- + } diff --git a/app/pages/components/enterprise-pricing-card.wrn b/app/pages/components/enterprise-pricing-card.wrn index ec7f3d7e..d2892df5 100644 --- a/app/pages/components/enterprise-pricing-card.wrn +++ b/app/pages/components/enterprise-pricing-card.wrn @@ -10,10 +10,10 @@ page EnterprisePricingCardcomponent {
W WRNexusJS - +
-
content component

EnterprisePricingCard

Reusable enterprise pricing card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EnterprisePricingCard
+      
content component

EnterprisePricingCard

Reusable enterprise pricing card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EnterprisePricingCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page EnterprisePricingCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/environment-selector.wrn b/app/pages/components/environment-selector.wrn index f094a6b4..ca950bcf 100644 --- a/app/pages/components/environment-selector.wrn +++ b/app/pages/components/environment-selector.wrn @@ -10,10 +10,10 @@ page EnvironmentSelectorcomponent {
W WRNexusJS - +
-
forms component

EnvironmentSelector

Reusable environment selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EnvironmentSelector
+      
forms component

EnvironmentSelector

Reusable environment selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EnvironmentSelector
   label="Environment"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page EnvironmentSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/environment-switcher.wrn b/app/pages/components/environment-switcher.wrn index 1205e497..abbb41cd 100644 --- a/app/pages/components/environment-switcher.wrn +++ b/app/pages/components/environment-switcher.wrn @@ -10,10 +10,10 @@ page EnvironmentSwitchercomponent {
W WRNexusJS - +
-
content component

EnvironmentSwitcher

Reusable environment switcher component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EnvironmentSwitcher
+      
content component

EnvironmentSwitcher

Reusable environment switcher component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EnvironmentSwitcher
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page EnvironmentSwitchercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/error-actions.wrn b/app/pages/components/error-actions.wrn index 8361eb85..277f9af3 100644 --- a/app/pages/components/error-actions.wrn +++ b/app/pages/components/error-actions.wrn @@ -10,10 +10,10 @@ page ErrorActionscomponent {
W WRNexusJS - +
-
actions component

ErrorActions

Reusable error actions component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ErrorActions
+      
actions component

ErrorActions

Reusable error actions component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ErrorActions
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page ErrorActionscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/error-card.wrn b/app/pages/components/error-card.wrn index 6f6b87e0..a93953bf 100644 --- a/app/pages/components/error-card.wrn +++ b/app/pages/components/error-card.wrn @@ -10,10 +10,10 @@ page ErrorCardcomponent {
W WRNexusJS - +
-
content component

ErrorCard

Reusable error card component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ErrorCard
+      
content component

ErrorCard

Reusable error card component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ErrorCard
   title="title"
   description="description"
   href="href"
@@ -36,7 +36,7 @@ page ErrorCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/error-code.wrn b/app/pages/components/error-code.wrn index 2ea46fea..9f3c16fb 100644 --- a/app/pages/components/error-code.wrn +++ b/app/pages/components/error-code.wrn @@ -10,10 +10,10 @@ page ErrorCodecomponent {
W WRNexusJS - +
-
content component

ErrorCode

Reusable error code component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ErrorCode
+      
content component

ErrorCode

Reusable error code component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ErrorCode
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ErrorCodecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/error-hero.wrn b/app/pages/components/error-hero.wrn index 7cb6efce..fba73b63 100644 --- a/app/pages/components/error-hero.wrn +++ b/app/pages/components/error-hero.wrn @@ -10,10 +10,10 @@ page ErrorHerocomponent {
W WRNexusJS - +
-
layout component

ErrorHero

Reusable error hero component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ErrorHero
+      
layout component

ErrorHero

Reusable error hero component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ErrorHero
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ErrorHerocomponent {
     }
 }
 
- + } diff --git a/app/pages/components/error-illustration.wrn b/app/pages/components/error-illustration.wrn index 2f51343f..4d36452b 100644 --- a/app/pages/components/error-illustration.wrn +++ b/app/pages/components/error-illustration.wrn @@ -10,10 +10,10 @@ page ErrorIllustrationcomponent {
W WRNexusJS - +
-
content component

ErrorIllustration

Reusable error illustration component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ErrorIllustration
+      
content component

ErrorIllustration

Reusable error illustration component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ErrorIllustration
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ErrorIllustrationcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/error-page-shell.wrn b/app/pages/components/error-page-shell.wrn index 9dec27f9..e5749e4e 100644 --- a/app/pages/components/error-page-shell.wrn +++ b/app/pages/components/error-page-shell.wrn @@ -10,10 +10,10 @@ page ErrorPageShellcomponent {
W WRNexusJS - +
-
layout component

ErrorPageShell

Reusable error page shell component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ErrorPageShell
+      
layout component

ErrorPageShell

Reusable error page shell component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ErrorPageShell
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ErrorPageShellcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/error-page.wrn b/app/pages/components/error-page.wrn index 9bd8742d..0c98dac0 100644 --- a/app/pages/components/error-page.wrn +++ b/app/pages/components/error-page.wrn @@ -10,10 +10,10 @@ page ErrorPagecomponent {
W WRNexusJS - +
-
content component

ErrorPage

Reusable error page component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ErrorPage
+      
content component

ErrorPage

Reusable error page component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ErrorPage
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ErrorPagecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/error-state.wrn b/app/pages/components/error-state.wrn index 36364295..4faaa0b4 100644 --- a/app/pages/components/error-state.wrn +++ b/app/pages/components/error-state.wrn @@ -10,10 +10,10 @@ page ErrorStatecomponent {
W WRNexusJS - +
-
feedback component

ErrorState

Reusable error state component.

@wrnexus/ui 0.2.6816 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ErrorState
+      
feedback component

ErrorState

Reusable error state component.

@wrnexus/ui 0.2.6916 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ErrorState
   type="error"
   eyebrow="eyebrow"
   title="Something went wrong"
@@ -209,7 +209,7 @@ page ErrorStatecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/error-support-link.wrn b/app/pages/components/error-support-link.wrn index c112e590..5f1e650a 100644 --- a/app/pages/components/error-support-link.wrn +++ b/app/pages/components/error-support-link.wrn @@ -10,10 +10,10 @@ page ErrorSupportLinkcomponent {
W WRNexusJS - +
-
actions component

ErrorSupportLink

Reusable error support link component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ErrorSupportLink
+      
actions component

ErrorSupportLink

Reusable error support link component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ErrorSupportLink
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page ErrorSupportLinkcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/estimated-cost-summary.wrn b/app/pages/components/estimated-cost-summary.wrn index f15dd24d..e3b81fe4 100644 --- a/app/pages/components/estimated-cost-summary.wrn +++ b/app/pages/components/estimated-cost-summary.wrn @@ -10,10 +10,10 @@ page EstimatedCostSummarycomponent {
W WRNexusJS - +
-
content component

EstimatedCostSummary

Reusable estimated cost summary component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EstimatedCostSummary
+      
content component

EstimatedCostSummary

Reusable estimated cost summary component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EstimatedCostSummary
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page EstimatedCostSummarycomponent {
     }
 }
 
- + } diff --git a/app/pages/components/event-table.wrn b/app/pages/components/event-table.wrn index 52774142..2311f9ae 100644 --- a/app/pages/components/event-table.wrn +++ b/app/pages/components/event-table.wrn @@ -10,10 +10,10 @@ page EventTablecomponent {
W WRNexusJS - +
-
data component

EventTable

Reusable event table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EventTable
+      
data component

EventTable

Reusable event table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EventTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page EventTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/expandable-text.wrn b/app/pages/components/expandable-text.wrn index d0bce683..a92f853e 100644 --- a/app/pages/components/expandable-text.wrn +++ b/app/pages/components/expandable-text.wrn @@ -10,10 +10,10 @@ page ExpandableTextcomponent {
W WRNexusJS - +
-
content component

ExpandableText

Reusable expandable text component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ExpandableText
+      
content component

ExpandableText

Reusable expandable text component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ExpandableText
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ExpandableTextcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/expiry-date-time-picker.wrn b/app/pages/components/expiry-date-time-picker.wrn index 71e6effe..2b249a67 100644 --- a/app/pages/components/expiry-date-time-picker.wrn +++ b/app/pages/components/expiry-date-time-picker.wrn @@ -10,10 +10,10 @@ page ExpiryDateTimePickercomponent {
W WRNexusJS - +
-
forms component

ExpiryDateTimePicker

Reusable expiry date time picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ExpiryDateTimePicker
+      
forms component

ExpiryDateTimePicker

Reusable expiry date time picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ExpiryDateTimePicker
   label="ExpiryDateTime"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page ExpiryDateTimePickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/export-progress.wrn b/app/pages/components/export-progress.wrn index 8bde6295..0d104d8e 100644 --- a/app/pages/components/export-progress.wrn +++ b/app/pages/components/export-progress.wrn @@ -10,10 +10,10 @@ page ExportProgresscomponent {
W WRNexusJS - +
-
visualization component

ExportProgress

Reusable export progress component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ExportProgress
+      
visualization component

ExportProgress

Reusable export progress component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ExportProgress
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page ExportProgresscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/external-link.wrn b/app/pages/components/external-link.wrn index 6d7f948c..20fc8a56 100644 --- a/app/pages/components/external-link.wrn +++ b/app/pages/components/external-link.wrn @@ -10,10 +10,10 @@ page ExternalLinkcomponent {
W WRNexusJS - +
-
actions component

ExternalLink

Reusable external link component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ExternalLink
+      
actions component

ExternalLink

Reusable external link component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ExternalLink
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page ExternalLinkcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/eyebrow-text.wrn b/app/pages/components/eyebrow-text.wrn index 6ebfe9c2..67b92d15 100644 --- a/app/pages/components/eyebrow-text.wrn +++ b/app/pages/components/eyebrow-text.wrn @@ -10,10 +10,10 @@ page EyebrowTextcomponent {
W WRNexusJS - +
-
content component

EyebrowText

Reusable eyebrow text component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EyebrowText
+      
content component

EyebrowText

Reusable eyebrow text component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<EyebrowText
   text="text"
   align="start"
 />

Legacy mount name: data-component="EyebrowText".

Props and attributes

PropTypeRequirementDefault
textstringOptional""
alignstringOptional"start"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/EyebrowText.wrn

component EyebrowText {
@@ -28,7 +28,7 @@ page EyebrowTextcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/factor-card.wrn b/app/pages/components/factor-card.wrn index 30c6a817..55af5470 100644 --- a/app/pages/components/factor-card.wrn +++ b/app/pages/components/factor-card.wrn @@ -10,10 +10,10 @@ page FactorCardcomponent {
W WRNexusJS - +
-
content component

FactorCard

Reusable factor card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FactorCard
+      
content component

FactorCard

Reusable factor card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FactorCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page FactorCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/fallback-route-builder.wrn b/app/pages/components/fallback-route-builder.wrn index 04525c52..b80b3c6a 100644 --- a/app/pages/components/fallback-route-builder.wrn +++ b/app/pages/components/fallback-route-builder.wrn @@ -10,10 +10,10 @@ page FallbackRouteBuildercomponent {
W WRNexusJS - +
-
content component

FallbackRouteBuilder

Reusable fallback route builder component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FallbackRouteBuilder
+      
content component

FallbackRouteBuilder

Reusable fallback route builder component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FallbackRouteBuilder
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page FallbackRouteBuildercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/fallback-route-diagram.wrn b/app/pages/components/fallback-route-diagram.wrn index c9a140ab..d0a98399 100644 --- a/app/pages/components/fallback-route-diagram.wrn +++ b/app/pages/components/fallback-route-diagram.wrn @@ -10,10 +10,10 @@ page FallbackRouteDiagramcomponent {
W WRNexusJS - +
-
visualization component

FallbackRouteDiagram

Reusable fallback route diagram component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FallbackRouteDiagram
+      
visualization component

FallbackRouteDiagram

Reusable fallback route diagram component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FallbackRouteDiagram
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page FallbackRouteDiagramcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/faq.wrn b/app/pages/components/faq.wrn index 80cae126..32fb7211 100644 --- a/app/pages/components/faq.wrn +++ b/app/pages/components/faq.wrn @@ -10,10 +10,10 @@ page FAQcomponent {
W WRNexusJS - +
-
core component

FAQ

Reusable faq component.

@wrnexus/ui 0.2.688 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FAQ
+      
core component

FAQ

Reusable faq component.

@wrnexus/ui 0.2.698 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FAQ
   eyebrow="eyebrow"
   title="Frequently asked questions"
   description="description"
@@ -35,7 +35,7 @@ page FAQcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/faqaccordion.wrn b/app/pages/components/faqaccordion.wrn index 5dc81097..eb2766f7 100644 --- a/app/pages/components/faqaccordion.wrn +++ b/app/pages/components/faqaccordion.wrn @@ -10,10 +10,10 @@ page FAQAccordioncomponent {
W WRNexusJS - +
-
core component

FAQAccordion

Reusable faqaccordion component.

@wrnexus/ui 0.2.6813 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FAQAccordion
+      
core component

FAQAccordion

Reusable faqaccordion component.

@wrnexus/ui 0.2.6913 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FAQAccordion
   eyebrow="eyebrow"
   title="Frequently asked questions"
   description="description"
@@ -251,7 +251,7 @@ page FAQAccordioncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/favicon-upload.wrn b/app/pages/components/favicon-upload.wrn index 3269cc9e..95356249 100644 --- a/app/pages/components/favicon-upload.wrn +++ b/app/pages/components/favicon-upload.wrn @@ -10,10 +10,10 @@ page FaviconUploadcomponent {
W WRNexusJS - +
-
content component

FaviconUpload

Reusable favicon upload component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FaviconUpload
+      
content component

FaviconUpload

Reusable favicon upload component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FaviconUpload
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page FaviconUploadcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/fax-input.wrn b/app/pages/components/fax-input.wrn index affe10eb..f152b229 100644 --- a/app/pages/components/fax-input.wrn +++ b/app/pages/components/fax-input.wrn @@ -10,10 +10,10 @@ page FaxInputcomponent {
W WRNexusJS - +
-
forms component

FaxInput

Reusable fax input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FaxInput
+      
forms component

FaxInput

Reusable fax input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FaxInput
   label="Fax"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page FaxInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/feature-card.wrn b/app/pages/components/feature-card.wrn index 4ef16ab3..e3cead89 100644 --- a/app/pages/components/feature-card.wrn +++ b/app/pages/components/feature-card.wrn @@ -10,10 +10,10 @@ page FeatureCardcomponent {
W WRNexusJS - +
-
content component

FeatureCard

Reusable feature card component.

@wrnexus/ui 0.2.685 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FeatureCard
+      
content component

FeatureCard

Reusable feature card component.

@wrnexus/ui 0.2.695 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FeatureCard
   icon="icon-[lucide--sparkles]"
   title="Feature"
   description="description"
@@ -39,7 +39,7 @@ page FeatureCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/feature-checklist.wrn b/app/pages/components/feature-checklist.wrn index 45548b24..abd30e9e 100644 --- a/app/pages/components/feature-checklist.wrn +++ b/app/pages/components/feature-checklist.wrn @@ -10,10 +10,10 @@ page FeatureChecklistcomponent {
W WRNexusJS - +
-
content component

FeatureChecklist

Reusable feature checklist component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FeatureChecklist
+      
content component

FeatureChecklist

Reusable feature checklist component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FeatureChecklist
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -48,7 +48,7 @@ page FeatureChecklistcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/feature-comparison-table.wrn b/app/pages/components/feature-comparison-table.wrn index b48ff802..02b64f62 100644 --- a/app/pages/components/feature-comparison-table.wrn +++ b/app/pages/components/feature-comparison-table.wrn @@ -10,10 +10,10 @@ page FeatureComparisonTablecomponent {
W WRNexusJS - +
-
data component

FeatureComparisonTable

Reusable feature comparison table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FeatureComparisonTable
+      
data component

FeatureComparisonTable

Reusable feature comparison table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FeatureComparisonTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page FeatureComparisonTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/feature-details-panel.wrn b/app/pages/components/feature-details-panel.wrn index 8be46442..85986fce 100644 --- a/app/pages/components/feature-details-panel.wrn +++ b/app/pages/components/feature-details-panel.wrn @@ -10,10 +10,10 @@ page FeatureDetailsPanelcomponent {
W WRNexusJS - +
-
layout component

FeatureDetailsPanel

Reusable feature details panel component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FeatureDetailsPanel
+      
layout component

FeatureDetailsPanel

Reusable feature details panel component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FeatureDetailsPanel
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page FeatureDetailsPanelcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/feature-grid.wrn b/app/pages/components/feature-grid.wrn index a49ecab6..5ad3ed4c 100644 --- a/app/pages/components/feature-grid.wrn +++ b/app/pages/components/feature-grid.wrn @@ -10,10 +10,10 @@ page FeatureGridcomponent {
W WRNexusJS - +
-
data component

FeatureGrid

Reusable feature grid component.

@wrnexus/ui 0.2.682 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FeatureGrid
+      
data component

FeatureGrid

Reusable feature grid component.

@wrnexus/ui 0.2.692 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FeatureGrid
   columns="3"
 />

Legacy mount name: data-component="FeatureGrid".

Props and attributes

PropTypeRequirementDefault
columnsnumberOptional3
classNamestringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/FeatureGrid.wrn

component FeatureGrid {
   props {
@@ -27,7 +27,7 @@ page FeatureGridcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/feature-icon-card.wrn b/app/pages/components/feature-icon-card.wrn index 5ef09e5e..adcb9bf3 100644 --- a/app/pages/components/feature-icon-card.wrn +++ b/app/pages/components/feature-icon-card.wrn @@ -10,10 +10,10 @@ page FeatureIconCardcomponent {
W WRNexusJS - +
-
content component

FeatureIconCard

Reusable feature icon card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FeatureIconCard
+      
content component

FeatureIconCard

Reusable feature icon card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FeatureIconCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page FeatureIconCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/feature-list.wrn b/app/pages/components/feature-list.wrn index 7671315a..b19be870 100644 --- a/app/pages/components/feature-list.wrn +++ b/app/pages/components/feature-list.wrn @@ -10,10 +10,10 @@ page FeatureListcomponent {
W WRNexusJS - +
-
data component

FeatureList

Reusable feature list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FeatureList
+      
data component

FeatureList

Reusable feature list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FeatureList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page FeatureListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/feature-tabs.wrn b/app/pages/components/feature-tabs.wrn index b40a06e5..fab04204 100644 --- a/app/pages/components/feature-tabs.wrn +++ b/app/pages/components/feature-tabs.wrn @@ -10,10 +10,10 @@ page FeatureTabscomponent {
W WRNexusJS - +
-
content component

FeatureTabs

Reusable feature tabs component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FeatureTabs
+      
content component

FeatureTabs

Reusable feature tabs component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FeatureTabs
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page FeatureTabscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/feature-timeline.wrn b/app/pages/components/feature-timeline.wrn index fe10530b..2bf2f59e 100644 --- a/app/pages/components/feature-timeline.wrn +++ b/app/pages/components/feature-timeline.wrn @@ -10,10 +10,10 @@ page FeatureTimelinecomponent {
W WRNexusJS - +
-
visualization component

FeatureTimeline

Reusable feature timeline component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FeatureTimeline
+      
visualization component

FeatureTimeline

Reusable feature timeline component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FeatureTimeline
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page FeatureTimelinecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/feature-unavailable-state.wrn b/app/pages/components/feature-unavailable-state.wrn index 6f8c3017..06accf5a 100644 --- a/app/pages/components/feature-unavailable-state.wrn +++ b/app/pages/components/feature-unavailable-state.wrn @@ -10,10 +10,10 @@ page FeatureUnavailableStatecomponent {
W WRNexusJS - +
-
feedback component

FeatureUnavailableState

Reusable feature unavailable state component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FeatureUnavailableState
+      
feedback component

FeatureUnavailableState

Reusable feature unavailable state component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FeatureUnavailableState
   label="FeatureUnavailable"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page FeatureUnavailableStatecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/featured-blog-card.wrn b/app/pages/components/featured-blog-card.wrn index ba8edccd..7cda1b37 100644 --- a/app/pages/components/featured-blog-card.wrn +++ b/app/pages/components/featured-blog-card.wrn @@ -10,10 +10,10 @@ page FeaturedBlogCardcomponent {
W WRNexusJS - +
-
content component

FeaturedBlogCard

Reusable featured blog card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FeaturedBlogCard
+      
content component

FeaturedBlogCard

Reusable featured blog card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FeaturedBlogCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page FeaturedBlogCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/field-actions.wrn b/app/pages/components/field-actions.wrn index 9a2a3153..3b0b3299 100644 --- a/app/pages/components/field-actions.wrn +++ b/app/pages/components/field-actions.wrn @@ -10,10 +10,10 @@ page FieldActionscomponent {
W WRNexusJS - +
-
actions component

FieldActions

Reusable field actions component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FieldActions
+      
actions component

FieldActions

Reusable field actions component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FieldActions
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page FieldActionscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/file-input.wrn b/app/pages/components/file-input.wrn index 1529a663..8418b8e2 100644 --- a/app/pages/components/file-input.wrn +++ b/app/pages/components/file-input.wrn @@ -10,10 +10,10 @@ page FileInputcomponent {
W WRNexusJS - +
-
forms component

FileInput

Reusable file input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FileInput
+      
forms component

FileInput

Reusable file input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FileInput
   label="File"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page FileInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/file-list.wrn b/app/pages/components/file-list.wrn index 779835d9..05abb787 100644 --- a/app/pages/components/file-list.wrn +++ b/app/pages/components/file-list.wrn @@ -10,10 +10,10 @@ page FileListcomponent {
W WRNexusJS - +
-
data component

FileList

Reusable file list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FileList
+      
data component

FileList

Reusable file list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FileList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page FileListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/file-size-input.wrn b/app/pages/components/file-size-input.wrn index b1c55a7e..6fb600d2 100644 --- a/app/pages/components/file-size-input.wrn +++ b/app/pages/components/file-size-input.wrn @@ -10,10 +10,10 @@ page FileSizeInputcomponent {
W WRNexusJS - +
-
forms component

FileSizeInput

Reusable file size input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FileSizeInput
+      
forms component

FileSizeInput

Reusable file size input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FileSizeInput
   label="FileSize"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page FileSizeInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/file-size-label.wrn b/app/pages/components/file-size-label.wrn index 37c366fd..63b0d9c9 100644 --- a/app/pages/components/file-size-label.wrn +++ b/app/pages/components/file-size-label.wrn @@ -10,10 +10,10 @@ page FileSizeLabelcomponent {
W WRNexusJS - +
-
content component

FileSizeLabel

Reusable file size label component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FileSizeLabel
+      
content component

FileSizeLabel

Reusable file size label component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FileSizeLabel
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page FileSizeLabelcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/file-type-badge.wrn b/app/pages/components/file-type-badge.wrn index 87faa2d6..8643fbf1 100644 --- a/app/pages/components/file-type-badge.wrn +++ b/app/pages/components/file-type-badge.wrn @@ -10,10 +10,10 @@ page FileTypeBadgecomponent {
W WRNexusJS - +
-
feedback component

FileTypeBadge

Reusable file type badge component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FileTypeBadge
+      
feedback component

FileTypeBadge

Reusable file type badge component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FileTypeBadge
   label="FileType"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page FileTypeBadgecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/file-upload-primitive.wrn b/app/pages/components/file-upload-primitive.wrn index 54f3e203..bf8a2665 100644 --- a/app/pages/components/file-upload-primitive.wrn +++ b/app/pages/components/file-upload-primitive.wrn @@ -10,10 +10,10 @@ page fileuploadcomponent {
W WRNexusJS - +
-
core component

file-upload

Reusable file-upload component.

@wrnexus/ui 0.2.687 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<file-upload
+      
core component

file-upload

Reusable file-upload component.

@wrnexus/ui 0.2.697 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<file-upload
   store="public"
   endpoint="/api/upload"
   accept="accept"
@@ -43,7 +43,7 @@ component FileUpload {
     }
 }
 
- + } diff --git a/app/pages/components/file-upload.wrn b/app/pages/components/file-upload.wrn index eb32c69b..2a31b69b 100644 --- a/app/pages/components/file-upload.wrn +++ b/app/pages/components/file-upload.wrn @@ -10,10 +10,10 @@ page FileUploadcomponent {
W WRNexusJS - +
-
content component

FileUpload

Reusable file upload component.

@wrnexus/ui 0.2.687 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FileUpload
+      
content component

FileUpload

Reusable file upload component.

@wrnexus/ui 0.2.697 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FileUpload
   id="file"
   name="file"
   label="Upload file"
@@ -39,7 +39,7 @@ page FileUploadcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/filter-bar.wrn b/app/pages/components/filter-bar.wrn index 9737ddbc..0a328914 100644 --- a/app/pages/components/filter-bar.wrn +++ b/app/pages/components/filter-bar.wrn @@ -10,10 +10,10 @@ page FilterBarcomponent {
W WRNexusJS - +
-
core component

FilterBar

Reusable filter bar component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FilterBar
+      
core component

FilterBar

Reusable filter bar component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FilterBar
   label="Filters"
   clearLabel="Clear filters"
   showClear="true"
@@ -34,7 +34,7 @@ page FilterBarcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/filter-menu.wrn b/app/pages/components/filter-menu.wrn index 505c5e96..a9cd7903 100644 --- a/app/pages/components/filter-menu.wrn +++ b/app/pages/components/filter-menu.wrn @@ -10,10 +10,10 @@ page FilterMenucomponent {
W WRNexusJS - +
-
overlays component

FilterMenu

Reusable filter menu component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FilterMenu
+      
overlays component

FilterMenu

Reusable filter menu component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FilterMenu
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page FilterMenucomponent {
     }
 }
 
- + } diff --git a/app/pages/components/filter-search-input.wrn b/app/pages/components/filter-search-input.wrn index 148bdb64..cebc50da 100644 --- a/app/pages/components/filter-search-input.wrn +++ b/app/pages/components/filter-search-input.wrn @@ -10,10 +10,10 @@ page FilterSearchInputcomponent {
W WRNexusJS - +
-
forms component

FilterSearchInput

Reusable filter search input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FilterSearchInput
+      
forms component

FilterSearchInput

Reusable filter search input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FilterSearchInput
   label="FilterSearch"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page FilterSearchInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/filterable-table.wrn b/app/pages/components/filterable-table.wrn index f0fc1909..f5f7c1da 100644 --- a/app/pages/components/filterable-table.wrn +++ b/app/pages/components/filterable-table.wrn @@ -10,10 +10,10 @@ page FilterableTablecomponent {
W WRNexusJS - +
-
data component

FilterableTable

Reusable filterable table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FilterableTable
+      
data component

FilterableTable

Reusable filterable table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FilterableTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page FilterableTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/final-cta.wrn b/app/pages/components/final-cta.wrn index 1ba37889..d5efe957 100644 --- a/app/pages/components/final-cta.wrn +++ b/app/pages/components/final-cta.wrn @@ -10,10 +10,10 @@ page FinalCTAcomponent {
W WRNexusJS - +
-
actions component

FinalCTA

Reusable final c t a component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FinalCTA
+      
actions component

FinalCTA

Reusable final c t a component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FinalCTA
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page FinalCTAcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/first-name-input.wrn b/app/pages/components/first-name-input.wrn index 1b04d396..85a9886a 100644 --- a/app/pages/components/first-name-input.wrn +++ b/app/pages/components/first-name-input.wrn @@ -10,10 +10,10 @@ page FirstNameInputcomponent {
W WRNexusJS - +
-
forms component

FirstNameInput

Reusable first name input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FirstNameInput
+      
forms component

FirstNameInput

Reusable first name input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FirstNameInput
   label="FirstName"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page FirstNameInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/flex.wrn b/app/pages/components/flex.wrn index 45654241..d5af74b9 100644 --- a/app/pages/components/flex.wrn +++ b/app/pages/components/flex.wrn @@ -10,10 +10,10 @@ page Flexcomponent {
W WRNexusJS - +
-
core component

Flex

Reusable flex component.

@wrnexus/ui 0.2.681 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Flex />

Legacy mount name: data-component="Flex".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Flex.wrn

component Flex {
+      
core component

Flex

Reusable flex component.

@wrnexus/ui 0.2.691 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Flex />

Legacy mount name: data-component="Flex".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Flex.wrn

component Flex {
   props {
     class = ""
   }
@@ -24,7 +24,7 @@ page Flexcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/font-picker.wrn b/app/pages/components/font-picker.wrn index fc20bed4..43a8bc3b 100644 --- a/app/pages/components/font-picker.wrn +++ b/app/pages/components/font-picker.wrn @@ -10,10 +10,10 @@ page FontPickercomponent {
W WRNexusJS - +
-
forms component

FontPicker

Reusable font picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FontPicker
+      
forms component

FontPicker

Reusable font picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FontPicker
   label="Font"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page FontPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/font-size-picker.wrn b/app/pages/components/font-size-picker.wrn index 5caa25fd..32b5c763 100644 --- a/app/pages/components/font-size-picker.wrn +++ b/app/pages/components/font-size-picker.wrn @@ -10,10 +10,10 @@ page FontSizePickercomponent {
W WRNexusJS - +
-
forms component

FontSizePicker

Reusable font size picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FontSizePicker
+      
forms component

FontSizePicker

Reusable font size picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FontSizePicker
   label="FontSize"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page FontSizePickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/font-weight-picker.wrn b/app/pages/components/font-weight-picker.wrn index 96cba7f5..d33309cd 100644 --- a/app/pages/components/font-weight-picker.wrn +++ b/app/pages/components/font-weight-picker.wrn @@ -10,10 +10,10 @@ page FontWeightPickercomponent {
W WRNexusJS - +
-
forms component

FontWeightPicker

Reusable font weight picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FontWeightPicker
+      
forms component

FontWeightPicker

Reusable font weight picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FontWeightPicker
   label="FontWeight"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page FontWeightPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/footer-language-switcher.wrn b/app/pages/components/footer-language-switcher.wrn index f0fb6a61..5c53e307 100644 --- a/app/pages/components/footer-language-switcher.wrn +++ b/app/pages/components/footer-language-switcher.wrn @@ -10,10 +10,10 @@ page FooterLanguageSwitchercomponent {
W WRNexusJS - +
-
content component

FooterLanguageSwitcher

Reusable footer language switcher component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FooterLanguageSwitcher
+      
content component

FooterLanguageSwitcher

Reusable footer language switcher component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FooterLanguageSwitcher
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page FooterLanguageSwitchercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/footer-status-indicator.wrn b/app/pages/components/footer-status-indicator.wrn index 966813a8..9116fe1d 100644 --- a/app/pages/components/footer-status-indicator.wrn +++ b/app/pages/components/footer-status-indicator.wrn @@ -10,10 +10,10 @@ page FooterStatusIndicatorcomponent {
W WRNexusJS - +
-
feedback component

FooterStatusIndicator

Reusable footer status indicator component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FooterStatusIndicator
+      
feedback component

FooterStatusIndicator

Reusable footer status indicator component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FooterStatusIndicator
   label="FooterStatus"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page FooterStatusIndicatorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/forbidden-page.wrn b/app/pages/components/forbidden-page.wrn index fdcf5565..b9483cdf 100644 --- a/app/pages/components/forbidden-page.wrn +++ b/app/pages/components/forbidden-page.wrn @@ -10,10 +10,10 @@ page ForbiddenPagecomponent {
W WRNexusJS - +
-
content component

ForbiddenPage

Reusable forbidden page component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ForbiddenPage
+      
content component

ForbiddenPage

Reusable forbidden page component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ForbiddenPage
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ForbiddenPagecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/forbidden-state.wrn b/app/pages/components/forbidden-state.wrn index db24b2d8..1949c39f 100644 --- a/app/pages/components/forbidden-state.wrn +++ b/app/pages/components/forbidden-state.wrn @@ -10,10 +10,10 @@ page ForbiddenStatecomponent {
W WRNexusJS - +
-
feedback component

ForbiddenState

Reusable forbidden state component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ForbiddenState
+      
feedback component

ForbiddenState

Reusable forbidden state component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ForbiddenState
   label="Forbidden"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ForbiddenStatecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/forgot-password-form.wrn b/app/pages/components/forgot-password-form.wrn index 34fd5976..a26ea6e2 100644 --- a/app/pages/components/forgot-password-form.wrn +++ b/app/pages/components/forgot-password-form.wrn @@ -10,10 +10,10 @@ page ForgotPasswordFormcomponent {
W WRNexusJS - +
-
content component

ForgotPasswordForm

Reusable forgot password form component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ForgotPasswordForm
+      
content component

ForgotPasswordForm

Reusable forgot password form component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ForgotPasswordForm
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ForgotPasswordFormcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/form-actions.wrn b/app/pages/components/form-actions.wrn index 4024c8bf..96c45e78 100644 --- a/app/pages/components/form-actions.wrn +++ b/app/pages/components/form-actions.wrn @@ -10,10 +10,10 @@ page FormActionscomponent {
W WRNexusJS - +
-
actions component

FormActions

Reusable form actions component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormActions
+      
actions component

FormActions

Reusable form actions component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormActions
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page FormActionscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/form-alert.wrn b/app/pages/components/form-alert.wrn index 185afe16..984848b8 100644 --- a/app/pages/components/form-alert.wrn +++ b/app/pages/components/form-alert.wrn @@ -10,10 +10,10 @@ page FormAlertcomponent {
W WRNexusJS - +
-
feedback component

FormAlert

Reusable form alert component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormAlert
+      
feedback component

FormAlert

Reusable form alert component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormAlert
   label="Form"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page FormAlertcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/form-dialog.wrn b/app/pages/components/form-dialog.wrn index fffc6c5d..7c8b9c37 100644 --- a/app/pages/components/form-dialog.wrn +++ b/app/pages/components/form-dialog.wrn @@ -10,10 +10,10 @@ page FormDialogcomponent {
W WRNexusJS - +
-
overlays component

FormDialog

Reusable form dialog component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormDialog
+      
overlays component

FormDialog

Reusable form dialog component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormDialog
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page FormDialogcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/form-error-summary.wrn b/app/pages/components/form-error-summary.wrn index b4b8efd2..93c44959 100644 --- a/app/pages/components/form-error-summary.wrn +++ b/app/pages/components/form-error-summary.wrn @@ -10,10 +10,10 @@ page FormErrorSummarycomponent {
W WRNexusJS - +
-
content component

FormErrorSummary

Reusable form error summary component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormErrorSummary
+      
content component

FormErrorSummary

Reusable form error summary component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormErrorSummary
   title="Please fix the following"
   visible="true"
 />

Legacy mount name: data-component="FormErrorSummary".

Props and attributes

PropTypeRequirementDefault
classstringOptional""
titlestringOptional"Please fix the following"
visiblebooleanOptionaltrue

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/FormErrorSummary.wrn

component FormErrorSummary {
@@ -32,7 +32,7 @@ page FormErrorSummarycomponent {
     }
 }
 
- + } diff --git a/app/pages/components/form-error.wrn b/app/pages/components/form-error.wrn index 4cae0d83..d111a262 100644 --- a/app/pages/components/form-error.wrn +++ b/app/pages/components/form-error.wrn @@ -10,10 +10,10 @@ page FormErrorcomponent {
W WRNexusJS - +
-
core component

FormError

Reusable form error component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormError
+      
core component

FormError

Reusable form error component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormError
   id="id"
   message="message"
 />

Legacy mount name: data-component="FormError".

Props and attributes

PropTypeRequirementDefault
idstringOptional""
messagestringOptional""
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/FormError.wrn

component FormError {
@@ -28,7 +28,7 @@ page FormErrorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/form-field.wrn b/app/pages/components/form-field.wrn index f0338bc0..81343d8d 100644 --- a/app/pages/components/form-field.wrn +++ b/app/pages/components/form-field.wrn @@ -10,10 +10,10 @@ page FormFieldcomponent {
W WRNexusJS - +
-
forms component

FormField

Reusable form field component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormField
+      
forms component

FormField

Reusable form field component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormField
   label="Field"
   help="help"
   error="error"
@@ -37,7 +37,7 @@ page FormFieldcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/form-grid.wrn b/app/pages/components/form-grid.wrn index 0b36b528..54f12df2 100644 --- a/app/pages/components/form-grid.wrn +++ b/app/pages/components/form-grid.wrn @@ -10,10 +10,10 @@ page FormGridcomponent {
W WRNexusJS - +
-
data component

FormGrid

Reusable form grid component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormGrid
+      
data component

FormGrid

Reusable form grid component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormGrid
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page FormGridcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/form-group.wrn b/app/pages/components/form-group.wrn index 2ff9b3cc..b01b7d31 100644 --- a/app/pages/components/form-group.wrn +++ b/app/pages/components/form-group.wrn @@ -10,10 +10,10 @@ page FormGroupcomponent {
W WRNexusJS - +
-
forms component

FormGroup

Reusable form group component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormGroup
+      
forms component

FormGroup

Reusable form group component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormGroup
   label="Form"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page FormGroupcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/form-help-text.wrn b/app/pages/components/form-help-text.wrn index 7732b130..4bd32e26 100644 --- a/app/pages/components/form-help-text.wrn +++ b/app/pages/components/form-help-text.wrn @@ -10,10 +10,10 @@ page FormHelpTextcomponent {
W WRNexusJS - +
-
content component

FormHelpText

Reusable form help text component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormHelpText
+      
content component

FormHelpText

Reusable form help text component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormHelpText
   id="id"
   text="text"
 />

Legacy mount name: data-component="FormHelpText".

Props and attributes

PropTypeRequirementDefault
idstringOptional""
textstringOptional""
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/FormHelpText.wrn

component FormHelpText {
@@ -28,7 +28,7 @@ page FormHelpTextcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/form-label.wrn b/app/pages/components/form-label.wrn index afba6ed9..aebdff08 100644 --- a/app/pages/components/form-label.wrn +++ b/app/pages/components/form-label.wrn @@ -10,10 +10,10 @@ page FormLabelcomponent {
W WRNexusJS - +
-
content component

FormLabel

Reusable form label component.

@wrnexus/ui 0.2.685 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormLabel
+      
content component

FormLabel

Reusable form label component.

@wrnexus/ui 0.2.695 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormLabel
   for="for"
   label="Label"
   required="false"
@@ -33,7 +33,7 @@ page FormLabelcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/form-progress.wrn b/app/pages/components/form-progress.wrn index 7383942f..b472aad9 100644 --- a/app/pages/components/form-progress.wrn +++ b/app/pages/components/form-progress.wrn @@ -10,10 +10,10 @@ page FormProgresscomponent {
W WRNexusJS - +
-
visualization component

FormProgress

Reusable form progress component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormProgress
+      
visualization component

FormProgress

Reusable form progress component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormProgress
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page FormProgresscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/form-row.wrn b/app/pages/components/form-row.wrn index 404eac40..566dfd94 100644 --- a/app/pages/components/form-row.wrn +++ b/app/pages/components/form-row.wrn @@ -10,10 +10,10 @@ page FormRowcomponent {
W WRNexusJS - +
-
data component

FormRow

Reusable form row component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormRow
+      
data component

FormRow

Reusable form row component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormRow
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page FormRowcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/form-section.wrn b/app/pages/components/form-section.wrn index 6a65c7ba..eb27c5f0 100644 --- a/app/pages/components/form-section.wrn +++ b/app/pages/components/form-section.wrn @@ -10,10 +10,10 @@ page FormSectioncomponent {
W WRNexusJS - +
-
layout component

FormSection

Reusable form section component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormSection
+      
layout component

FormSection

Reusable form section component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FormSection
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page FormSectioncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/form.wrn b/app/pages/components/form.wrn index ae7c7259..9045ac97 100644 --- a/app/pages/components/form.wrn +++ b/app/pages/components/form.wrn @@ -10,10 +10,10 @@ page Formcomponent {
W WRNexusJS - +
-
content component

Form

Reusable form component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Form
+      
content component

Form

Reusable form component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Form
   action="action"
   method="post"
   name="name"
@@ -33,7 +33,7 @@ page Formcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/full-bleed.wrn b/app/pages/components/full-bleed.wrn index b65883eb..5087eb60 100644 --- a/app/pages/components/full-bleed.wrn +++ b/app/pages/components/full-bleed.wrn @@ -10,10 +10,10 @@ page FullBleedcomponent {
W WRNexusJS - +
-
core component

FullBleed

Reusable full bleed component.

@wrnexus/ui 0.2.681 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FullBleed />

Legacy mount name: data-component="FullBleed".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/FullBleed.wrn

component FullBleed {
+      
core component

FullBleed

Reusable full bleed component.

@wrnexus/ui 0.2.691 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FullBleed />

Legacy mount name: data-component="FullBleed".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/FullBleed.wrn

component FullBleed {
   props {
     class = ""
   }
@@ -24,7 +24,7 @@ page FullBleedcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/fullscreen-dialog.wrn b/app/pages/components/fullscreen-dialog.wrn index 589aa5ad..ad24e5a2 100644 --- a/app/pages/components/fullscreen-dialog.wrn +++ b/app/pages/components/fullscreen-dialog.wrn @@ -10,10 +10,10 @@ page FullscreenDialogcomponent {
W WRNexusJS - +
-
overlays component

FullscreenDialog

Reusable fullscreen dialog component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FullscreenDialog
+      
overlays component

FullscreenDialog

Reusable fullscreen dialog component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FullscreenDialog
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page FullscreenDialogcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/funnel-chart.wrn b/app/pages/components/funnel-chart.wrn index 1b91d0d3..621574fa 100644 --- a/app/pages/components/funnel-chart.wrn +++ b/app/pages/components/funnel-chart.wrn @@ -10,10 +10,10 @@ page FunnelChartcomponent {
W WRNexusJS - +
-
visualization component

FunnelChart

Reusable funnel chart component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FunnelChart
+      
visualization component

FunnelChart

Reusable funnel chart component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<FunnelChart
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page FunnelChartcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/geo-chart.wrn b/app/pages/components/geo-chart.wrn index cbca235d..5b093661 100644 --- a/app/pages/components/geo-chart.wrn +++ b/app/pages/components/geo-chart.wrn @@ -10,10 +10,10 @@ page GeoChartcomponent {
W WRNexusJS - +
-
visualization component

GeoChart

Reusable geo chart component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GeoChart
+      
visualization component

GeoChart

Reusable geo chart component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GeoChart
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page GeoChartcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/geofence-editor.wrn b/app/pages/components/geofence-editor.wrn index d1eb9a5a..76142d61 100644 --- a/app/pages/components/geofence-editor.wrn +++ b/app/pages/components/geofence-editor.wrn @@ -10,10 +10,10 @@ page GeofenceEditorcomponent {
W WRNexusJS - +
-
forms component

GeofenceEditor

Reusable geofence editor component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GeofenceEditor
+      
forms component

GeofenceEditor

Reusable geofence editor component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GeofenceEditor
   label="Geofence"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page GeofenceEditorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/ghost-button.wrn b/app/pages/components/ghost-button.wrn index 2763d2fb..ff5c0546 100644 --- a/app/pages/components/ghost-button.wrn +++ b/app/pages/components/ghost-button.wrn @@ -10,10 +10,10 @@ page GhostButtoncomponent {
W WRNexusJS - +
-
actions component

GhostButton

Reusable ghost button component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GhostButton
+      
actions component

GhostButton

Reusable ghost button component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GhostButton
   label="Action"
   type="button"
   disabled="false"
@@ -30,7 +30,7 @@ page GhostButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/glass-card.wrn b/app/pages/components/glass-card.wrn index 27e1a844..23471776 100644 --- a/app/pages/components/glass-card.wrn +++ b/app/pages/components/glass-card.wrn @@ -10,10 +10,10 @@ page GlassCardcomponent {
W WRNexusJS - +
-
content component

GlassCard

Reusable glass card component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GlassCard
+      
content component

GlassCard

Reusable glass card component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GlassCard
   title="title"
   description="description"
   href="href"
@@ -36,7 +36,7 @@ page GlassCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/global-search.wrn b/app/pages/components/global-search.wrn index a1f153bd..0bf559c8 100644 --- a/app/pages/components/global-search.wrn +++ b/app/pages/components/global-search.wrn @@ -10,10 +10,10 @@ page GlobalSearchcomponent {
W WRNexusJS - +
-
content component

GlobalSearch

Reusable global search component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GlobalSearch
+      
content component

GlobalSearch

Reusable global search component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GlobalSearch
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page GlobalSearchcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/gradient-cta.wrn b/app/pages/components/gradient-cta.wrn index 198320fc..ab065e67 100644 --- a/app/pages/components/gradient-cta.wrn +++ b/app/pages/components/gradient-cta.wrn @@ -10,10 +10,10 @@ page GradientCTAcomponent {
W WRNexusJS - +
-
actions component

GradientCTA

Reusable gradient c t a component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GradientCTA
+      
actions component

GradientCTA

Reusable gradient c t a component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GradientCTA
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page GradientCTAcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/gradient-picker.wrn b/app/pages/components/gradient-picker.wrn index c4e85b30..b747f710 100644 --- a/app/pages/components/gradient-picker.wrn +++ b/app/pages/components/gradient-picker.wrn @@ -10,10 +10,10 @@ page GradientPickercomponent {
W WRNexusJS - +
-
forms component

GradientPicker

Reusable gradient picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GradientPicker
+      
forms component

GradientPicker

Reusable gradient picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GradientPicker
   label="Gradient"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page GradientPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/gradient-stop-editor.wrn b/app/pages/components/gradient-stop-editor.wrn index c954c73b..d1db71c2 100644 --- a/app/pages/components/gradient-stop-editor.wrn +++ b/app/pages/components/gradient-stop-editor.wrn @@ -10,10 +10,10 @@ page GradientStopEditorcomponent {
W WRNexusJS - +
-
forms component

GradientStopEditor

Reusable gradient stop editor component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GradientStopEditor
+      
forms component

GradientStopEditor

Reusable gradient stop editor component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GradientStopEditor
   label="GradientStop"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page GradientStopEditorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/grid.wrn b/app/pages/components/grid.wrn index bfddd3e1..e808a866 100644 --- a/app/pages/components/grid.wrn +++ b/app/pages/components/grid.wrn @@ -10,10 +10,10 @@ page Gridcomponent {
W WRNexusJS - +
-
data component

Grid

Reusable grid component.

@wrnexus/ui 0.2.682 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Grid
+      
data component

Grid

Reusable grid component.

@wrnexus/ui 0.2.692 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Grid
   gap="4"
 />

Legacy mount name: data-component="Grid".

Props and attributes

PropTypeRequirementDefault
gapstringOptional"4"
classNamestringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Grid.wrn

component Grid {
   props {
@@ -27,7 +27,7 @@ page Gridcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/guide-card.wrn b/app/pages/components/guide-card.wrn index 827258db..9e0110f3 100644 --- a/app/pages/components/guide-card.wrn +++ b/app/pages/components/guide-card.wrn @@ -10,10 +10,10 @@ page GuideCardcomponent {
W WRNexusJS - +
-
content component

GuideCard

Reusable guide card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GuideCard
+      
content component

GuideCard

Reusable guide card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GuideCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page GuideCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/guide-checklist.wrn b/app/pages/components/guide-checklist.wrn index 1c87b391..83112168 100644 --- a/app/pages/components/guide-checklist.wrn +++ b/app/pages/components/guide-checklist.wrn @@ -10,10 +10,10 @@ page GuideChecklistcomponent {
W WRNexusJS - +
-
content component

GuideChecklist

Reusable guide checklist component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GuideChecklist
+      
content component

GuideChecklist

Reusable guide checklist component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GuideChecklist
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page GuideChecklistcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/guide-difficulty-badge.wrn b/app/pages/components/guide-difficulty-badge.wrn index 2380ef93..7056f2f4 100644 --- a/app/pages/components/guide-difficulty-badge.wrn +++ b/app/pages/components/guide-difficulty-badge.wrn @@ -10,10 +10,10 @@ page GuideDifficultyBadgecomponent {
W WRNexusJS - +
-
feedback component

GuideDifficultyBadge

Reusable guide difficulty badge component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GuideDifficultyBadge
+      
feedback component

GuideDifficultyBadge

Reusable guide difficulty badge component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GuideDifficultyBadge
   label="GuideDifficulty"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page GuideDifficultyBadgecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/guide-grid.wrn b/app/pages/components/guide-grid.wrn index 522c28c2..7b09d39d 100644 --- a/app/pages/components/guide-grid.wrn +++ b/app/pages/components/guide-grid.wrn @@ -10,10 +10,10 @@ page GuideGridcomponent {
W WRNexusJS - +
-
data component

GuideGrid

Reusable guide grid component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GuideGrid
+      
data component

GuideGrid

Reusable guide grid component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GuideGrid
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page GuideGridcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/guide-step.wrn b/app/pages/components/guide-step.wrn index 5a733e30..7783a813 100644 --- a/app/pages/components/guide-step.wrn +++ b/app/pages/components/guide-step.wrn @@ -10,10 +10,10 @@ page GuideStepcomponent {
W WRNexusJS - +
-
content component

GuideStep

Reusable guide step component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GuideStep
+      
content component

GuideStep

Reusable guide step component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<GuideStep
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page GuideStepcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/header-actions.wrn b/app/pages/components/header-actions.wrn index 41c6246e..c1adaaa3 100644 --- a/app/pages/components/header-actions.wrn +++ b/app/pages/components/header-actions.wrn @@ -10,10 +10,10 @@ page HeaderActionscomponent {
W WRNexusJS - +
-
actions component

HeaderActions

Reusable header actions component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HeaderActions
+      
actions component

HeaderActions

Reusable header actions component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HeaderActions
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page HeaderActionscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/header.wrn b/app/pages/components/header.wrn index b39453cf..f9d4017d 100644 --- a/app/pages/components/header.wrn +++ b/app/pages/components/header.wrn @@ -10,10 +10,10 @@ page Headercomponent {
W WRNexusJS - +
-
layout component

Header

Reusable header component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Header
+      
layout component

Header

Reusable header component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Header
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page Headercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/health-indicator.wrn b/app/pages/components/health-indicator.wrn index c9dc942a..4e0f3894 100644 --- a/app/pages/components/health-indicator.wrn +++ b/app/pages/components/health-indicator.wrn @@ -10,10 +10,10 @@ page HealthIndicatorcomponent {
W WRNexusJS - +
-
feedback component

HealthIndicator

Reusable health indicator component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HealthIndicator
+      
feedback component

HealthIndicator

Reusable health indicator component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HealthIndicator
   label="Health"
   variant="default"
 />

Legacy mount name: data-component="HealthIndicator".

Props and attributes

PropTypeRequirementDefault
labelstringOptional"Health"
variantstringOptional"default"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/HealthIndicator.wrn

component HealthIndicator {
@@ -28,7 +28,7 @@ page HealthIndicatorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/hero-actions.wrn b/app/pages/components/hero-actions.wrn index 82e218f5..72399e8c 100644 --- a/app/pages/components/hero-actions.wrn +++ b/app/pages/components/hero-actions.wrn @@ -10,10 +10,10 @@ page HeroActionscomponent {
W WRNexusJS - +
-
actions component

HeroActions

Reusable hero actions component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HeroActions
+      
actions component

HeroActions

Reusable hero actions component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HeroActions
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page HeroActionscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/hero-code-panel.wrn b/app/pages/components/hero-code-panel.wrn index 0bcf7ae2..7baa757f 100644 --- a/app/pages/components/hero-code-panel.wrn +++ b/app/pages/components/hero-code-panel.wrn @@ -10,10 +10,10 @@ page HeroCodePanelcomponent {
W WRNexusJS - +
-
layout component

HeroCodePanel

Reusable hero code panel component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HeroCodePanel
+      
layout component

HeroCodePanel

Reusable hero code panel component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HeroCodePanel
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page HeroCodePanelcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/hero-gradient-text.wrn b/app/pages/components/hero-gradient-text.wrn index 556279c6..a8965e51 100644 --- a/app/pages/components/hero-gradient-text.wrn +++ b/app/pages/components/hero-gradient-text.wrn @@ -10,10 +10,10 @@ page HeroGradientTextcomponent {
W WRNexusJS - +
-
content component

HeroGradientText

Reusable hero gradient text component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HeroGradientText
+      
content component

HeroGradientText

Reusable hero gradient text component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HeroGradientText
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page HeroGradientTextcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/hero-primary-action.wrn b/app/pages/components/hero-primary-action.wrn index 2d88875c..057091a5 100644 --- a/app/pages/components/hero-primary-action.wrn +++ b/app/pages/components/hero-primary-action.wrn @@ -10,10 +10,10 @@ page HeroPrimaryActioncomponent {
W WRNexusJS - +
-
actions component

HeroPrimaryAction

Reusable hero primary action component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HeroPrimaryAction
+      
actions component

HeroPrimaryAction

Reusable hero primary action component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HeroPrimaryAction
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page HeroPrimaryActioncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/hero-product-preview.wrn b/app/pages/components/hero-product-preview.wrn index 65dbb94e..74c38b47 100644 --- a/app/pages/components/hero-product-preview.wrn +++ b/app/pages/components/hero-product-preview.wrn @@ -10,10 +10,10 @@ page HeroProductPreviewcomponent {
W WRNexusJS - +
-
content component

HeroProductPreview

Reusable hero product preview component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HeroProductPreview
+      
content component

HeroProductPreview

Reusable hero product preview component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HeroProductPreview
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page HeroProductPreviewcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/hero-secondary-action.wrn b/app/pages/components/hero-secondary-action.wrn index 6b675695..d20a0bb4 100644 --- a/app/pages/components/hero-secondary-action.wrn +++ b/app/pages/components/hero-secondary-action.wrn @@ -10,10 +10,10 @@ page HeroSecondaryActioncomponent {
W WRNexusJS - +
-
actions component

HeroSecondaryAction

Reusable hero secondary action component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HeroSecondaryAction
+      
actions component

HeroSecondaryAction

Reusable hero secondary action component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HeroSecondaryAction
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page HeroSecondaryActioncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/hero-trust-text.wrn b/app/pages/components/hero-trust-text.wrn index 0e0088f7..70333351 100644 --- a/app/pages/components/hero-trust-text.wrn +++ b/app/pages/components/hero-trust-text.wrn @@ -10,10 +10,10 @@ page HeroTrustTextcomponent {
W WRNexusJS - +
-
content component

HeroTrustText

Reusable hero trust text component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HeroTrustText
+      
content component

HeroTrustText

Reusable hero trust text component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HeroTrustText
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page HeroTrustTextcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/hero.wrn b/app/pages/components/hero.wrn index 9f1bcb6c..2eb2fd61 100644 --- a/app/pages/components/hero.wrn +++ b/app/pages/components/hero.wrn @@ -10,10 +10,10 @@ page Herocomponent {
W WRNexusJS - +
-
layout component

Hero

Reusable hero component.

@wrnexus/ui 0.2.6810 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Hero
+      
layout component

Hero

Reusable hero component.

@wrnexus/ui 0.2.6910 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Hero
   eyebrow="eyebrow"
   title="Build faster with WRNexusJS"
   highlight="highlight"
@@ -55,7 +55,7 @@ page Herocomponent {
     }
 }
 
- + } diff --git a/app/pages/components/hex-color-input.wrn b/app/pages/components/hex-color-input.wrn index cc5d718b..822533c9 100644 --- a/app/pages/components/hex-color-input.wrn +++ b/app/pages/components/hex-color-input.wrn @@ -10,10 +10,10 @@ page HexColorInputcomponent {
W WRNexusJS - +
-
forms component

HexColorInput

Reusable hex color input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HexColorInput
+      
forms component

HexColorInput

Reusable hex color input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HexColorInput
   label="HexColor"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page HexColorInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/hidden-field.wrn b/app/pages/components/hidden-field.wrn index a5be038b..53d3fea9 100644 --- a/app/pages/components/hidden-field.wrn +++ b/app/pages/components/hidden-field.wrn @@ -10,10 +10,10 @@ page HiddenFieldcomponent {
W WRNexusJS - +
-
forms component

HiddenField

Reusable hidden field component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HiddenField
+      
forms component

HiddenField

Reusable hidden field component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HiddenField
   label="Hidden"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page HiddenFieldcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/highlight-text.wrn b/app/pages/components/highlight-text.wrn index 692a27ce..766cad05 100644 --- a/app/pages/components/highlight-text.wrn +++ b/app/pages/components/highlight-text.wrn @@ -10,10 +10,10 @@ page HighlightTextcomponent {
W WRNexusJS - +
-
content component

HighlightText

Reusable highlight text component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HighlightText
+      
content component

HighlightText

Reusable highlight text component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HighlightText
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page HighlightTextcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/holiday-calendar.wrn b/app/pages/components/holiday-calendar.wrn index ad5f7fe1..958e796c 100644 --- a/app/pages/components/holiday-calendar.wrn +++ b/app/pages/components/holiday-calendar.wrn @@ -10,10 +10,10 @@ page HolidayCalendarcomponent {
W WRNexusJS - +
-
content component

HolidayCalendar

Reusable holiday calendar component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HolidayCalendar
+      
content component

HolidayCalendar

Reusable holiday calendar component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HolidayCalendar
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page HolidayCalendarcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/hostname-input.wrn b/app/pages/components/hostname-input.wrn index 74d0c04f..50a641be 100644 --- a/app/pages/components/hostname-input.wrn +++ b/app/pages/components/hostname-input.wrn @@ -10,10 +10,10 @@ page HostnameInputcomponent {
W WRNexusJS - +
-
forms component

HostnameInput

Reusable hostname input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HostnameInput
+      
forms component

HostnameInput

Reusable hostname input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HostnameInput
   label="Hostname"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page HostnameInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/hour-picker.wrn b/app/pages/components/hour-picker.wrn index 25896bd3..4818b9b4 100644 --- a/app/pages/components/hour-picker.wrn +++ b/app/pages/components/hour-picker.wrn @@ -10,10 +10,10 @@ page HourPickercomponent {
W WRNexusJS - +
-
forms component

HourPicker

Reusable hour picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HourPicker
+      
forms component

HourPicker

Reusable hour picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HourPicker
   label="Hour"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page HourPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/hsl-color-input.wrn b/app/pages/components/hsl-color-input.wrn index d74128c9..fb1422ce 100644 --- a/app/pages/components/hsl-color-input.wrn +++ b/app/pages/components/hsl-color-input.wrn @@ -10,10 +10,10 @@ page HslColorInputcomponent {
W WRNexusJS - +
-
forms component

HslColorInput

Reusable hsl color input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HslColorInput
+      
forms component

HslColorInput

Reusable hsl color input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HslColorInput
   label="HslColor"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page HslColorInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/hstack.wrn b/app/pages/components/hstack.wrn index 1fef0659..a9c968c0 100644 --- a/app/pages/components/hstack.wrn +++ b/app/pages/components/hstack.wrn @@ -10,10 +10,10 @@ page hstackcomponent {
W WRNexusJS - +
-
core component

hstack

Reusable hstack component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<hstack
+      
core component

hstack

Reusable hstack component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<hstack
   gap="4"
   align="center"
 />

Legacy mount name: data-component="hstack".

Props and attributes

PropTypeRequirementDefault
gapstringOptional"4"
alignstringOptional"center"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/hstack.wrn

// Horizontal stack: row layout with a gap and cross-axis alignment.
@@ -32,7 +32,7 @@ component HStack {
     }
 }
 
- + } diff --git a/app/pages/components/html-editor.wrn b/app/pages/components/html-editor.wrn index f5a02c47..550e7578 100644 --- a/app/pages/components/html-editor.wrn +++ b/app/pages/components/html-editor.wrn @@ -10,10 +10,10 @@ page HtmlEditorcomponent {
W WRNexusJS - +
-
forms component

HtmlEditor

Reusable html editor component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HtmlEditor
+      
forms component

HtmlEditor

Reusable html editor component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HtmlEditor
   label="Html"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page HtmlEditorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/human-approval-step.wrn b/app/pages/components/human-approval-step.wrn index 6c8d4683..3fcd9c55 100644 --- a/app/pages/components/human-approval-step.wrn +++ b/app/pages/components/human-approval-step.wrn @@ -10,10 +10,10 @@ page HumanApprovalStepcomponent {
W WRNexusJS - +
-
content component

HumanApprovalStep

Reusable human approval step component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HumanApprovalStep
+      
content component

HumanApprovalStep

Reusable human approval step component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<HumanApprovalStep
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page HumanApprovalStepcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/icon-button.wrn b/app/pages/components/icon-button.wrn index 207dc770..0ca9adbe 100644 --- a/app/pages/components/icon-button.wrn +++ b/app/pages/components/icon-button.wrn @@ -10,10 +10,10 @@ page IconButtoncomponent {
W WRNexusJS - +
-
actions component

IconButton

Reusable icon button component.

@wrnexus/ui 0.2.685 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IconButton
+      
actions component

IconButton

Reusable icon button component.

@wrnexus/ui 0.2.695 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IconButton
   label="Action"
   icon="•"
   variant="ghost"
@@ -33,7 +33,7 @@ page IconButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/icon-picker.wrn b/app/pages/components/icon-picker.wrn index 53d84470..a6eb25c8 100644 --- a/app/pages/components/icon-picker.wrn +++ b/app/pages/components/icon-picker.wrn @@ -10,10 +10,10 @@ page IconPickercomponent {
W WRNexusJS - +
-
forms component

IconPicker

Reusable icon picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IconPicker
+      
forms component

IconPicker

Reusable icon picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IconPicker
   label="Icon"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page IconPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/icon-selector.wrn b/app/pages/components/icon-selector.wrn index bb381516..2db6e3f2 100644 --- a/app/pages/components/icon-selector.wrn +++ b/app/pages/components/icon-selector.wrn @@ -10,10 +10,10 @@ page IconSelectorcomponent {
W WRNexusJS - +
-
forms component

IconSelector

Reusable icon selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IconSelector
+      
forms component

IconSelector

Reusable icon selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IconSelector
   label="Icon"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page IconSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/icon.wrn b/app/pages/components/icon.wrn index c9d4b4d5..f7a7fd15 100644 --- a/app/pages/components/icon.wrn +++ b/app/pages/components/icon.wrn @@ -10,10 +10,10 @@ page Iconcomponent {
W WRNexusJS - +
-
content component

Icon

Reusable icon component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Icon
+      
content component

Icon

Reusable icon component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Icon
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page Iconcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/identifier-input.wrn b/app/pages/components/identifier-input.wrn index 1e829fbe..9306ff24 100644 --- a/app/pages/components/identifier-input.wrn +++ b/app/pages/components/identifier-input.wrn @@ -10,10 +10,10 @@ page IdentifierInputcomponent {
W WRNexusJS - +
-
forms component

IdentifierInput

Reusable identifier input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IdentifierInput
+      
forms component

IdentifierInput

Reusable identifier input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IdentifierInput
   label="Identifier"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page IdentifierInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/illustration.wrn b/app/pages/components/illustration.wrn index 4aa8d94a..f7360e01 100644 --- a/app/pages/components/illustration.wrn +++ b/app/pages/components/illustration.wrn @@ -10,10 +10,10 @@ page Illustrationcomponent {
W WRNexusJS - +
-
content component

Illustration

Reusable illustration component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Illustration
+      
content component

Illustration

Reusable illustration component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Illustration
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page Illustrationcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/image-compression-preview.wrn b/app/pages/components/image-compression-preview.wrn index 9600b480..cb9a7dd8 100644 --- a/app/pages/components/image-compression-preview.wrn +++ b/app/pages/components/image-compression-preview.wrn @@ -10,10 +10,10 @@ page ImageCompressionPreviewcomponent {
W WRNexusJS - +
-
content component

ImageCompressionPreview

Reusable image compression preview component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ImageCompressionPreview
+      
content component

ImageCompressionPreview

Reusable image compression preview component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ImageCompressionPreview
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ImageCompressionPreviewcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/image-editor.wrn b/app/pages/components/image-editor.wrn index 722371bd..d1e118da 100644 --- a/app/pages/components/image-editor.wrn +++ b/app/pages/components/image-editor.wrn @@ -10,10 +10,10 @@ page ImageEditorcomponent {
W WRNexusJS - +
-
forms component

ImageEditor

Reusable image editor component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ImageEditor
+      
forms component

ImageEditor

Reusable image editor component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ImageEditor
   label="Image"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page ImageEditorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/image-preview-dialog.wrn b/app/pages/components/image-preview-dialog.wrn index b52cd1f1..00e5105f 100644 --- a/app/pages/components/image-preview-dialog.wrn +++ b/app/pages/components/image-preview-dialog.wrn @@ -10,10 +10,10 @@ page ImagePreviewDialogcomponent {
W WRNexusJS - +
-
overlays component

ImagePreviewDialog

Reusable image preview dialog component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ImagePreviewDialog
+      
overlays component

ImagePreviewDialog

Reusable image preview dialog component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ImagePreviewDialog
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page ImagePreviewDialogcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/image-selector.wrn b/app/pages/components/image-selector.wrn index 36ad388e..9a0f13a0 100644 --- a/app/pages/components/image-selector.wrn +++ b/app/pages/components/image-selector.wrn @@ -10,10 +10,10 @@ page ImageSelectorcomponent {
W WRNexusJS - +
-
forms component

ImageSelector

Reusable image selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ImageSelector
+      
forms component

ImageSelector

Reusable image selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ImageSelector
   label="Image"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page ImageSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/image-upload.wrn b/app/pages/components/image-upload.wrn index 2d892e31..a1917d80 100644 --- a/app/pages/components/image-upload.wrn +++ b/app/pages/components/image-upload.wrn @@ -10,10 +10,10 @@ page ImageUploadcomponent {
W WRNexusJS - +
-
content component

ImageUpload

Reusable image upload component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ImageUpload
+      
content component

ImageUpload

Reusable image upload component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ImageUpload
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ImageUploadcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/import-progress.wrn b/app/pages/components/import-progress.wrn index 3b454241..37775a79 100644 --- a/app/pages/components/import-progress.wrn +++ b/app/pages/components/import-progress.wrn @@ -10,10 +10,10 @@ page ImportProgresscomponent {
W WRNexusJS - +
-
visualization component

ImportProgress

Reusable import progress component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ImportProgress
+      
visualization component

ImportProgress

Reusable import progress component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ImportProgress
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page ImportProgresscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/incident-alert.wrn b/app/pages/components/incident-alert.wrn index 023a64ac..454a8bd5 100644 --- a/app/pages/components/incident-alert.wrn +++ b/app/pages/components/incident-alert.wrn @@ -10,10 +10,10 @@ page IncidentAlertcomponent {
W WRNexusJS - +
-
feedback component

IncidentAlert

Reusable incident alert component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IncidentAlert
+      
feedback component

IncidentAlert

Reusable incident alert component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IncidentAlert
   label="Incident"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page IncidentAlertcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/incident-banner.wrn b/app/pages/components/incident-banner.wrn index e2819d88..0206ab48 100644 --- a/app/pages/components/incident-banner.wrn +++ b/app/pages/components/incident-banner.wrn @@ -10,10 +10,10 @@ page IncidentBannercomponent {
W WRNexusJS - +
-
feedback component

IncidentBanner

Reusable incident banner component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IncidentBanner
+      
feedback component

IncidentBanner

Reusable incident banner component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IncidentBanner
   label="Incident"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page IncidentBannercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/incident-card.wrn b/app/pages/components/incident-card.wrn index 895c27fd..3e9feae4 100644 --- a/app/pages/components/incident-card.wrn +++ b/app/pages/components/incident-card.wrn @@ -10,10 +10,10 @@ page IncidentCardcomponent {
W WRNexusJS - +
-
content component

IncidentCard

Reusable incident card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IncidentCard
+      
content component

IncidentCard

Reusable incident card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IncidentCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page IncidentCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/incident-list.wrn b/app/pages/components/incident-list.wrn index 19cdeb52..5d1b2960 100644 --- a/app/pages/components/incident-list.wrn +++ b/app/pages/components/incident-list.wrn @@ -10,10 +10,10 @@ page IncidentListcomponent {
W WRNexusJS - +
-
data component

IncidentList

Reusable incident list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IncidentList
+      
data component

IncidentList

Reusable incident list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IncidentList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page IncidentListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/incident-response-flow.wrn b/app/pages/components/incident-response-flow.wrn index 1852a9af..988b2058 100644 --- a/app/pages/components/incident-response-flow.wrn +++ b/app/pages/components/incident-response-flow.wrn @@ -10,10 +10,10 @@ page IncidentResponseFlowcomponent {
W WRNexusJS - +
-
visualization component

IncidentResponseFlow

Reusable incident response flow component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IncidentResponseFlow
+      
visualization component

IncidentResponseFlow

Reusable incident response flow component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IncidentResponseFlow
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page IncidentResponseFlowcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/incident-severity-badge.wrn b/app/pages/components/incident-severity-badge.wrn index 337fca81..4fb4f5f4 100644 --- a/app/pages/components/incident-severity-badge.wrn +++ b/app/pages/components/incident-severity-badge.wrn @@ -10,10 +10,10 @@ page IncidentSeverityBadgecomponent {
W WRNexusJS - +
-
feedback component

IncidentSeverityBadge

Reusable incident severity badge component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IncidentSeverityBadge
+      
feedback component

IncidentSeverityBadge

Reusable incident severity badge component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IncidentSeverityBadge
   label="IncidentSeverity"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page IncidentSeverityBadgecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/incident-timeline.wrn b/app/pages/components/incident-timeline.wrn index 243b57fe..108bcc54 100644 --- a/app/pages/components/incident-timeline.wrn +++ b/app/pages/components/incident-timeline.wrn @@ -10,10 +10,10 @@ page IncidentTimelinecomponent {
W WRNexusJS - +
-
visualization component

IncidentTimeline

Reusable incident timeline component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IncidentTimeline
+      
visualization component

IncidentTimeline

Reusable incident timeline component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IncidentTimeline
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page IncidentTimelinecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/industry-badge.wrn b/app/pages/components/industry-badge.wrn index b73f142b..4f9735a5 100644 --- a/app/pages/components/industry-badge.wrn +++ b/app/pages/components/industry-badge.wrn @@ -10,10 +10,10 @@ page IndustryBadgecomponent {
W WRNexusJS - +
-
feedback component

IndustryBadge

Reusable industry badge component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IndustryBadge
+      
feedback component

IndustryBadge

Reusable industry badge component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IndustryBadge
   label="Industry"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page IndustryBadgecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/industry-selector.wrn b/app/pages/components/industry-selector.wrn index 822a1d51..787a305a 100644 --- a/app/pages/components/industry-selector.wrn +++ b/app/pages/components/industry-selector.wrn @@ -10,10 +10,10 @@ page IndustrySelectorcomponent {
W WRNexusJS - +
-
forms component

IndustrySelector

Reusable industry selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IndustrySelector
+      
forms component

IndustrySelector

Reusable industry selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IndustrySelector
   label="Industry"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page IndustrySelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/info-card.wrn b/app/pages/components/info-card.wrn index 01bd8533..ad389087 100644 --- a/app/pages/components/info-card.wrn +++ b/app/pages/components/info-card.wrn @@ -10,10 +10,10 @@ page InfoCardcomponent {
W WRNexusJS - +
-
content component

InfoCard

Reusable info card component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<InfoCard
+      
content component

InfoCard

Reusable info card component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<InfoCard
   title="title"
   description="description"
   href="href"
@@ -36,7 +36,7 @@ page InfoCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/inline-alert.wrn b/app/pages/components/inline-alert.wrn index 45a2c4b6..12aa1aba 100644 --- a/app/pages/components/inline-alert.wrn +++ b/app/pages/components/inline-alert.wrn @@ -10,10 +10,10 @@ page InlineAlertcomponent {
W WRNexusJS - +
-
feedback component

InlineAlert

Reusable inline alert component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<InlineAlert
+      
feedback component

InlineAlert

Reusable inline alert component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<InlineAlert
   label="Inline"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page InlineAlertcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/inline-code.wrn b/app/pages/components/inline-code.wrn index bde94ffb..84b416b3 100644 --- a/app/pages/components/inline-code.wrn +++ b/app/pages/components/inline-code.wrn @@ -10,10 +10,10 @@ page InlineCodecomponent {
W WRNexusJS - +
-
content component

InlineCode

Reusable inline code component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<InlineCode
+      
content component

InlineCode

Reusable inline code component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<InlineCode
   text="text"
   align="start"
 />

Legacy mount name: data-component="InlineCode".

Props and attributes

PropTypeRequirementDefault
textstringOptional""
alignstringOptional"start"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/InlineCode.wrn

component InlineCode {
@@ -28,7 +28,7 @@ page InlineCodecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/inline.wrn b/app/pages/components/inline.wrn index 1d299e7d..bc536d44 100644 --- a/app/pages/components/inline.wrn +++ b/app/pages/components/inline.wrn @@ -10,10 +10,10 @@ page Inlinecomponent {
W WRNexusJS - +
-
core component

Inline

Reusable inline component.

@wrnexus/ui 0.2.682 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Inline
+      
core component

Inline

Reusable inline component.

@wrnexus/ui 0.2.692 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Inline
   gap="4"
 />

Legacy mount name: data-component="Inline".

Props and attributes

PropTypeRequirementDefault
gapstringOptional"4"
classNamestringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Inline.wrn

component Inline {
   props {
@@ -27,7 +27,7 @@ page Inlinecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/input-group.wrn b/app/pages/components/input-group.wrn index 3dc72d02..a8142f31 100644 --- a/app/pages/components/input-group.wrn +++ b/app/pages/components/input-group.wrn @@ -10,10 +10,10 @@ page InputGroupcomponent {
W WRNexusJS - +
-
forms component

InputGroup

Reusable input group component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<InputGroup
+      
forms component

InputGroup

Reusable input group component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<InputGroup
   label="Input"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page InputGroupcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/input.wrn b/app/pages/components/input.wrn index cf26915c..42857b91 100644 --- a/app/pages/components/input.wrn +++ b/app/pages/components/input.wrn @@ -10,10 +10,10 @@ page inputcomponent {
W WRNexusJS - +
-
core component

input

Reusable input component.

@wrnexus/ui 0.2.685 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<input
+      
core component

input

Reusable input component.

@wrnexus/ui 0.2.695 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<input
   type="text"
   name="name"
   value="value"
@@ -32,7 +32,7 @@ component Input {
     }
 }
 
- + } diff --git a/app/pages/components/inset-panel.wrn b/app/pages/components/inset-panel.wrn index 8f165e25..fbafa488 100644 --- a/app/pages/components/inset-panel.wrn +++ b/app/pages/components/inset-panel.wrn @@ -10,10 +10,10 @@ page InsetPanelcomponent {
W WRNexusJS - +
-
layout component

InsetPanel

Reusable inset panel component.

@wrnexus/ui 0.2.681 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<InsetPanel />

Legacy mount name: data-component="InsetPanel".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/InsetPanel.wrn

component InsetPanel {
+      
layout component

InsetPanel

Reusable inset panel component.

@wrnexus/ui 0.2.691 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<InsetPanel />

Legacy mount name: data-component="InsetPanel".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/InsetPanel.wrn

component InsetPanel {
   props {
     class = ""
   }
@@ -24,7 +24,7 @@ page InsetPanelcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/integer-input.wrn b/app/pages/components/integer-input.wrn index bd6bb454..c07bfe86 100644 --- a/app/pages/components/integer-input.wrn +++ b/app/pages/components/integer-input.wrn @@ -10,10 +10,10 @@ page IntegerInputcomponent {
W WRNexusJS - +
-
forms component

IntegerInput

Reusable integer input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IntegerInput
+      
forms component

IntegerInput

Reusable integer input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IntegerInput
   label="Integer"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page IntegerInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/integration-card.wrn b/app/pages/components/integration-card.wrn index 929cc173..e6ba40d6 100644 --- a/app/pages/components/integration-card.wrn +++ b/app/pages/components/integration-card.wrn @@ -10,10 +10,10 @@ page IntegrationCardcomponent {
W WRNexusJS - +
-
content component

IntegrationCard

Reusable integration card component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IntegrationCard
+      
content component

IntegrationCard

Reusable integration card component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IntegrationCard
   title="title"
   description="description"
   href="href"
@@ -37,7 +37,7 @@ page IntegrationCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/invoice-line-item.wrn b/app/pages/components/invoice-line-item.wrn index f78b7324..f0189beb 100644 --- a/app/pages/components/invoice-line-item.wrn +++ b/app/pages/components/invoice-line-item.wrn @@ -10,10 +10,10 @@ page InvoiceLineItemcomponent {
W WRNexusJS - +
-
content component

InvoiceLineItem

Reusable invoice line item component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<InvoiceLineItem
+      
content component

InvoiceLineItem

Reusable invoice line item component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<InvoiceLineItem
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page InvoiceLineItemcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/invoice-summary.wrn b/app/pages/components/invoice-summary.wrn index c4fc970b..06a3e1f0 100644 --- a/app/pages/components/invoice-summary.wrn +++ b/app/pages/components/invoice-summary.wrn @@ -10,10 +10,10 @@ page InvoiceSummarycomponent {
W WRNexusJS - +
-
content component

InvoiceSummary

Reusable invoice summary component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<InvoiceSummary
+      
content component

InvoiceSummary

Reusable invoice summary component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<InvoiceSummary
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page InvoiceSummarycomponent {
     }
 }
 
- + } diff --git a/app/pages/components/ip-address-input.wrn b/app/pages/components/ip-address-input.wrn index 705596a7..371a7ae0 100644 --- a/app/pages/components/ip-address-input.wrn +++ b/app/pages/components/ip-address-input.wrn @@ -10,10 +10,10 @@ page IpAddressInputcomponent {
W WRNexusJS - +
-
forms component

IpAddressInput

Reusable ip address input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IpAddressInput
+      
forms component

IpAddressInput

Reusable ip address input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<IpAddressInput
   label="IpAddress"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page IpAddressInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/job-card.wrn b/app/pages/components/job-card.wrn index e4384d77..e02ea7b0 100644 --- a/app/pages/components/job-card.wrn +++ b/app/pages/components/job-card.wrn @@ -10,10 +10,10 @@ page JobCardcomponent {
W WRNexusJS - +
-
content component

JobCard

Reusable job card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<JobCard
+      
content component

JobCard

Reusable job card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<JobCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page JobCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/job-progress.wrn b/app/pages/components/job-progress.wrn index 6e56fa40..756932eb 100644 --- a/app/pages/components/job-progress.wrn +++ b/app/pages/components/job-progress.wrn @@ -10,10 +10,10 @@ page JobProgresscomponent {
W WRNexusJS - +
-
visualization component

JobProgress

Reusable job progress component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<JobProgress
+      
visualization component

JobProgress

Reusable job progress component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<JobProgress
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page JobProgresscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/job-title-input.wrn b/app/pages/components/job-title-input.wrn index c8c1919c..014a4003 100644 --- a/app/pages/components/job-title-input.wrn +++ b/app/pages/components/job-title-input.wrn @@ -10,10 +10,10 @@ page JobTitleInputcomponent {
W WRNexusJS - +
-
forms component

JobTitleInput

Reusable job title input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<JobTitleInput
+      
forms component

JobTitleInput

Reusable job title input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<JobTitleInput
   label="JobTitle"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page JobTitleInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/json-input.wrn b/app/pages/components/json-input.wrn index 538f5176..5b4b1cb9 100644 --- a/app/pages/components/json-input.wrn +++ b/app/pages/components/json-input.wrn @@ -10,10 +10,10 @@ page JsonInputcomponent {
W WRNexusJS - +
-
forms component

JsonInput

Reusable json input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<JsonInput
+      
forms component

JsonInput

Reusable json input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<JsonInput
   label="Json"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page JsonInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/json-viewer.wrn b/app/pages/components/json-viewer.wrn index f89dae4e..8b7ced0f 100644 --- a/app/pages/components/json-viewer.wrn +++ b/app/pages/components/json-viewer.wrn @@ -10,10 +10,10 @@ page JsonViewercomponent {
W WRNexusJS - +
-
content component

JsonViewer

Reusable json viewer component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<JsonViewer
+      
content component

JsonViewer

Reusable json viewer component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<JsonViewer
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page JsonViewercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/key-value-table.wrn b/app/pages/components/key-value-table.wrn index 693fd844..f4ddb451 100644 --- a/app/pages/components/key-value-table.wrn +++ b/app/pages/components/key-value-table.wrn @@ -10,10 +10,10 @@ page KeyValueTablecomponent {
W WRNexusJS - +
-
data component

KeyValueTable

Reusable key value table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<KeyValueTable
+      
data component

KeyValueTable

Reusable key value table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<KeyValueTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page KeyValueTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/kyc-document-upload.wrn b/app/pages/components/kyc-document-upload.wrn index a0e556f2..627301c9 100644 --- a/app/pages/components/kyc-document-upload.wrn +++ b/app/pages/components/kyc-document-upload.wrn @@ -10,10 +10,10 @@ page KycDocumentUploadcomponent {
W WRNexusJS - +
-
content component

KycDocumentUpload

Reusable kyc document upload component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<KycDocumentUpload
+      
content component

KycDocumentUpload

Reusable kyc document upload component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<KycDocumentUpload
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page KycDocumentUploadcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/language-selector.wrn b/app/pages/components/language-selector.wrn index 7e2ba51c..3004e272 100644 --- a/app/pages/components/language-selector.wrn +++ b/app/pages/components/language-selector.wrn @@ -10,10 +10,10 @@ page LanguageSelectorcomponent {
W WRNexusJS - +
-
forms component

LanguageSelector

Reusable language selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LanguageSelector
+      
forms component

LanguageSelector

Reusable language selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LanguageSelector
   label="Language"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page LanguageSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/language-switcher.wrn b/app/pages/components/language-switcher.wrn index 3b331e1a..b3bcd970 100644 --- a/app/pages/components/language-switcher.wrn +++ b/app/pages/components/language-switcher.wrn @@ -10,10 +10,10 @@ page LanguageSwitchercomponent {
W WRNexusJS - +
-
content component

LanguageSwitcher

Reusable language switcher component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LanguageSwitcher
+      
content component

LanguageSwitcher

Reusable language switcher component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LanguageSwitcher
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page LanguageSwitchercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/last-name-input.wrn b/app/pages/components/last-name-input.wrn index 5efbf139..38637ac2 100644 --- a/app/pages/components/last-name-input.wrn +++ b/app/pages/components/last-name-input.wrn @@ -10,10 +10,10 @@ page LastNameInputcomponent {
W WRNexusJS - +
-
forms component

LastNameInput

Reusable last name input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LastNameInput
+      
forms component

LastNameInput

Reusable last name input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LastNameInput
   label="LastName"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page LastNameInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/latency-metric.wrn b/app/pages/components/latency-metric.wrn index 816f6fef..00da255f 100644 --- a/app/pages/components/latency-metric.wrn +++ b/app/pages/components/latency-metric.wrn @@ -10,10 +10,10 @@ page LatencyMetriccomponent {
W WRNexusJS - +
-
visualization component

LatencyMetric

Reusable latency metric component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LatencyMetric
+      
visualization component

LatencyMetric

Reusable latency metric component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LatencyMetric
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page LatencyMetriccomponent {
     }
 }
 
- + } diff --git a/app/pages/components/latitude-input.wrn b/app/pages/components/latitude-input.wrn index 4820a9f6..448656c7 100644 --- a/app/pages/components/latitude-input.wrn +++ b/app/pages/components/latitude-input.wrn @@ -10,10 +10,10 @@ page LatitudeInputcomponent {
W WRNexusJS - +
-
forms component

LatitudeInput

Reusable latitude input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LatitudeInput
+      
forms component

LatitudeInput

Reusable latitude input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LatitudeInput
   label="Latitude"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page LatitudeInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/lead-text.wrn b/app/pages/components/lead-text.wrn index 843b4cb2..598f29d4 100644 --- a/app/pages/components/lead-text.wrn +++ b/app/pages/components/lead-text.wrn @@ -10,10 +10,10 @@ page LeadTextcomponent {
W WRNexusJS - +
-
content component

LeadText

Reusable lead text component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LeadText
+      
content component

LeadText

Reusable lead text component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LeadText
   text="text"
   align="start"
 />

Legacy mount name: data-component="LeadText".

Props and attributes

PropTypeRequirementDefault
textstringOptional""
alignstringOptional"start"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/LeadText.wrn

component LeadText {
@@ -28,7 +28,7 @@ page LeadTextcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/leadership-grid.wrn b/app/pages/components/leadership-grid.wrn index 6eadeabb..dcdc8836 100644 --- a/app/pages/components/leadership-grid.wrn +++ b/app/pages/components/leadership-grid.wrn @@ -10,10 +10,10 @@ page LeadershipGridcomponent {
W WRNexusJS - +
-
data component

LeadershipGrid

Reusable leadership grid component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LeadershipGrid
+      
data component

LeadershipGrid

Reusable leadership grid component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LeadershipGrid
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page LeadershipGridcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/legal-acceptance-notice.wrn b/app/pages/components/legal-acceptance-notice.wrn index 8460a114..723b393b 100644 --- a/app/pages/components/legal-acceptance-notice.wrn +++ b/app/pages/components/legal-acceptance-notice.wrn @@ -10,10 +10,10 @@ page LegalAcceptanceNoticecomponent {
W WRNexusJS - +
-
feedback component

LegalAcceptanceNotice

Reusable legal acceptance notice component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalAcceptanceNotice
+      
feedback component

LegalAcceptanceNotice

Reusable legal acceptance notice component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalAcceptanceNotice
   label="LegalAcceptance"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page LegalAcceptanceNoticecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/legal-bullet-list.wrn b/app/pages/components/legal-bullet-list.wrn index 486bbaa8..7edb8594 100644 --- a/app/pages/components/legal-bullet-list.wrn +++ b/app/pages/components/legal-bullet-list.wrn @@ -10,10 +10,10 @@ page LegalBulletListcomponent {
W WRNexusJS - +
-
data component

LegalBulletList

Reusable legal bullet list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalBulletList
+      
data component

LegalBulletList

Reusable legal bullet list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalBulletList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page LegalBulletListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/legal-contact-block.wrn b/app/pages/components/legal-contact-block.wrn index 615d07de..da9ae4d1 100644 --- a/app/pages/components/legal-contact-block.wrn +++ b/app/pages/components/legal-contact-block.wrn @@ -10,10 +10,10 @@ page LegalContactBlockcomponent {
W WRNexusJS - +
-
content component

LegalContactBlock

Reusable legal contact block component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalContactBlock
+      
content component

LegalContactBlock

Reusable legal contact block component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalContactBlock
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page LegalContactBlockcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/legal-definition-list.wrn b/app/pages/components/legal-definition-list.wrn index 061c4bb1..ec4b7452 100644 --- a/app/pages/components/legal-definition-list.wrn +++ b/app/pages/components/legal-definition-list.wrn @@ -10,10 +10,10 @@ page LegalDefinitionListcomponent {
W WRNexusJS - +
-
data component

LegalDefinitionList

Reusable legal definition list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalDefinitionList
+      
data component

LegalDefinitionList

Reusable legal definition list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalDefinitionList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page LegalDefinitionListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/legal-document-header.wrn b/app/pages/components/legal-document-header.wrn index de2a2d1c..e9b4e487 100644 --- a/app/pages/components/legal-document-header.wrn +++ b/app/pages/components/legal-document-header.wrn @@ -10,10 +10,10 @@ page LegalDocumentHeadercomponent {
W WRNexusJS - +
-
layout component

LegalDocumentHeader

Reusable legal document header component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalDocumentHeader
+      
layout component

LegalDocumentHeader

Reusable legal document header component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalDocumentHeader
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page LegalDocumentHeadercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/legal-document-layout.wrn b/app/pages/components/legal-document-layout.wrn index 5658cece..56cd3a06 100644 --- a/app/pages/components/legal-document-layout.wrn +++ b/app/pages/components/legal-document-layout.wrn @@ -10,10 +10,10 @@ page LegalDocumentLayoutcomponent {
W WRNexusJS - +
-
layout component

LegalDocumentLayout

Reusable legal document layout component.

@wrnexus/ui 0.2.684 props2 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalDocumentLayout
+      
layout component

LegalDocumentLayout

Reusable legal document layout component.

@wrnexus/ui 0.2.694 props2 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalDocumentLayout
   title="Legal document"
   effectiveDate="effectiveDate"
   updatedDate="updatedDate"
@@ -48,7 +48,7 @@ page LegalDocumentLayoutcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/legal-hero.wrn b/app/pages/components/legal-hero.wrn index 82048e0d..d60b809c 100644 --- a/app/pages/components/legal-hero.wrn +++ b/app/pages/components/legal-hero.wrn @@ -10,10 +10,10 @@ page LegalHerocomponent {
W WRNexusJS - +
-
layout component

LegalHero

Reusable legal hero component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalHero
+      
layout component

LegalHero

Reusable legal hero component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalHero
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page LegalHerocomponent {
     }
 }
 
- + } diff --git a/app/pages/components/legal-language-selector.wrn b/app/pages/components/legal-language-selector.wrn index 076c4a4c..de12b722 100644 --- a/app/pages/components/legal-language-selector.wrn +++ b/app/pages/components/legal-language-selector.wrn @@ -10,10 +10,10 @@ page LegalLanguageSelectorcomponent {
W WRNexusJS - +
-
forms component

LegalLanguageSelector

Reusable legal language selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalLanguageSelector
+      
forms component

LegalLanguageSelector

Reusable legal language selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalLanguageSelector
   label="LegalLanguage"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page LegalLanguageSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/legal-notice.wrn b/app/pages/components/legal-notice.wrn index af14cb65..ee99d580 100644 --- a/app/pages/components/legal-notice.wrn +++ b/app/pages/components/legal-notice.wrn @@ -10,10 +10,10 @@ page LegalNoticecomponent {
W WRNexusJS - +
-
feedback component

LegalNotice

Reusable legal notice component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalNotice
+      
feedback component

LegalNotice

Reusable legal notice component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalNotice
   label="Legal"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page LegalNoticecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/legal-page-shell.wrn b/app/pages/components/legal-page-shell.wrn index 80470e46..9f2ae953 100644 --- a/app/pages/components/legal-page-shell.wrn +++ b/app/pages/components/legal-page-shell.wrn @@ -10,10 +10,10 @@ page LegalPageShellcomponent {
W WRNexusJS - +
-
layout component

LegalPageShell

Reusable legal page shell component.

@wrnexus/ui 0.2.681 props2 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalPageShell />

Legacy mount name: data-component="LegalPageShell".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • navigation
  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/LegalPageShell.wrn

component LegalPageShell {
+      
layout component

LegalPageShell

Reusable legal page shell component.

@wrnexus/ui 0.2.691 props2 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalPageShell />

Legacy mount name: data-component="LegalPageShell".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • navigation
  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/LegalPageShell.wrn

component LegalPageShell {
   props {
     class = ""
   }
@@ -29,7 +29,7 @@ page LegalPageShellcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/legal-print-button.wrn b/app/pages/components/legal-print-button.wrn index 34c515d5..bf84ef20 100644 --- a/app/pages/components/legal-print-button.wrn +++ b/app/pages/components/legal-print-button.wrn @@ -10,10 +10,10 @@ page LegalPrintButtoncomponent {
W WRNexusJS - +
-
actions component

LegalPrintButton

Reusable legal print button component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalPrintButton
+      
actions component

LegalPrintButton

Reusable legal print button component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalPrintButton
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page LegalPrintButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/legal-region-selector.wrn b/app/pages/components/legal-region-selector.wrn index 751d0281..acd8e0a7 100644 --- a/app/pages/components/legal-region-selector.wrn +++ b/app/pages/components/legal-region-selector.wrn @@ -10,10 +10,10 @@ page LegalRegionSelectorcomponent {
W WRNexusJS - +
-
forms component

LegalRegionSelector

Reusable legal region selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalRegionSelector
+      
forms component

LegalRegionSelector

Reusable legal region selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalRegionSelector
   label="LegalRegion"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page LegalRegionSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/legal-section.wrn b/app/pages/components/legal-section.wrn index 41b84caa..40a5d096 100644 --- a/app/pages/components/legal-section.wrn +++ b/app/pages/components/legal-section.wrn @@ -10,10 +10,10 @@ page LegalSectioncomponent {
W WRNexusJS - +
-
layout component

LegalSection

Reusable legal section component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalSection
+      
layout component

LegalSection

Reusable legal section component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalSection
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page LegalSectioncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/legal-summary.wrn b/app/pages/components/legal-summary.wrn index a08617db..5819b2d8 100644 --- a/app/pages/components/legal-summary.wrn +++ b/app/pages/components/legal-summary.wrn @@ -10,10 +10,10 @@ page LegalSummarycomponent {
W WRNexusJS - +
-
content component

LegalSummary

Reusable legal summary component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalSummary
+      
content component

LegalSummary

Reusable legal summary component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalSummary
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page LegalSummarycomponent {
     }
 }
 
- + } diff --git a/app/pages/components/legal-table-of-contents.wrn b/app/pages/components/legal-table-of-contents.wrn index b89f9c9f..80453b93 100644 --- a/app/pages/components/legal-table-of-contents.wrn +++ b/app/pages/components/legal-table-of-contents.wrn @@ -10,10 +10,10 @@ page LegalTableOfContentscomponent {
W WRNexusJS - +
-
core component

LegalTableOfContents

Reusable legal table of contents component.

@wrnexus/ui 0.2.683 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalTableOfContents
+      
core component

LegalTableOfContents

Reusable legal table of contents component.

@wrnexus/ui 0.2.693 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalTableOfContents
   title="On this page"
   items="[]"
 />

Legacy mount name: data-component="LegalTableOfContents".

Props and attributes

PropTypeRequirementDefault
titlestringOptional"On this page"
itemsstringOptional[]
classstringOptional""

Slots

This component does not declare a slot.

Events

This component does not declare a custom event.

Source contract

Installed source: components/LegalTableOfContents.wrn

component LegalTableOfContents {
@@ -32,7 +32,7 @@ page LegalTableOfContentscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/legal-table.wrn b/app/pages/components/legal-table.wrn index 25f5cbd8..dffff417 100644 --- a/app/pages/components/legal-table.wrn +++ b/app/pages/components/legal-table.wrn @@ -10,10 +10,10 @@ page LegalTablecomponent {
W WRNexusJS - +
-
data component

LegalTable

Reusable legal table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalTable
+      
data component

LegalTable

Reusable legal table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page LegalTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/legal-version-badge.wrn b/app/pages/components/legal-version-badge.wrn index 87ccd3fe..d6593c71 100644 --- a/app/pages/components/legal-version-badge.wrn +++ b/app/pages/components/legal-version-badge.wrn @@ -10,10 +10,10 @@ page LegalVersionBadgecomponent {
W WRNexusJS - +
-
feedback component

LegalVersionBadge

Reusable legal version badge component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalVersionBadge
+      
feedback component

LegalVersionBadge

Reusable legal version badge component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LegalVersionBadge
   label="LegalVersion"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page LegalVersionBadgecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/letter-spacing-picker.wrn b/app/pages/components/letter-spacing-picker.wrn index 280528f8..18b492c4 100644 --- a/app/pages/components/letter-spacing-picker.wrn +++ b/app/pages/components/letter-spacing-picker.wrn @@ -10,10 +10,10 @@ page LetterSpacingPickercomponent {
W WRNexusJS - +
-
forms component

LetterSpacingPicker

Reusable letter spacing picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LetterSpacingPicker
+      
forms component

LetterSpacingPicker

Reusable letter spacing picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LetterSpacingPicker
   label="LetterSpacing"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page LetterSpacingPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/license-key-input.wrn b/app/pages/components/license-key-input.wrn index 6370c18d..dd0f0990 100644 --- a/app/pages/components/license-key-input.wrn +++ b/app/pages/components/license-key-input.wrn @@ -10,10 +10,10 @@ page LicenseKeyInputcomponent {
W WRNexusJS - +
-
forms component

LicenseKeyInput

Reusable license key input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LicenseKeyInput
+      
forms component

LicenseKeyInput

Reusable license key input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LicenseKeyInput
   label="LicenseKey"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page LicenseKeyInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/lightbox.wrn b/app/pages/components/lightbox.wrn index e842eb62..62e4f4f8 100644 --- a/app/pages/components/lightbox.wrn +++ b/app/pages/components/lightbox.wrn @@ -10,10 +10,10 @@ page Lightboxcomponent {
W WRNexusJS - +
-
overlays component

Lightbox

Reusable lightbox component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Lightbox
+      
overlays component

Lightbox

Reusable lightbox component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Lightbox
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page Lightboxcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/line-chart.wrn b/app/pages/components/line-chart.wrn index 2d896477..d6b3109c 100644 --- a/app/pages/components/line-chart.wrn +++ b/app/pages/components/line-chart.wrn @@ -10,10 +10,10 @@ page LineChartcomponent {
W WRNexusJS - +
-
visualization component

LineChart

Reusable line chart component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LineChart
+      
visualization component

LineChart

Reusable line chart component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LineChart
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page LineChartcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/line-height-picker.wrn b/app/pages/components/line-height-picker.wrn index 0d25bb86..ee4aa2ad 100644 --- a/app/pages/components/line-height-picker.wrn +++ b/app/pages/components/line-height-picker.wrn @@ -10,10 +10,10 @@ page LineHeightPickercomponent {
W WRNexusJS - +
-
forms component

LineHeightPicker

Reusable line height picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LineHeightPicker
+      
forms component

LineHeightPicker

Reusable line height picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LineHeightPicker
   label="LineHeight"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page LineHeightPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/link-button.wrn b/app/pages/components/link-button.wrn index 0e925d3d..1a3611b8 100644 --- a/app/pages/components/link-button.wrn +++ b/app/pages/components/link-button.wrn @@ -10,10 +10,10 @@ page LinkButtoncomponent {
W WRNexusJS - +
-
actions component

LinkButton

Reusable link button component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LinkButton
+      
actions component

LinkButton

Reusable link button component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LinkButton
   label="Action"
   type="button"
   disabled="false"
@@ -30,7 +30,7 @@ page LinkButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/link.wrn b/app/pages/components/link.wrn index d5e1097b..60e33666 100644 --- a/app/pages/components/link.wrn +++ b/app/pages/components/link.wrn @@ -10,10 +10,10 @@ page Linkcomponent {
W WRNexusJS - +
-
core component

Link

Reusable link component.

@wrnexus/ui 0.2.684 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Link
+      
core component

Link

Reusable link component.

@wrnexus/ui 0.2.694 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Link
   href="#"
   label="Link"
   external="false"
@@ -30,7 +30,7 @@ page Linkcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/list.wrn b/app/pages/components/list.wrn index 658b7250..0b510152 100644 --- a/app/pages/components/list.wrn +++ b/app/pages/components/list.wrn @@ -10,10 +10,10 @@ page Listcomponent {
W WRNexusJS - +
-
data component

List

Reusable list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<List
+      
data component

List

Reusable list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<List
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page Listcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/loading-button.wrn b/app/pages/components/loading-button.wrn index 627fcd5e..cf502b09 100644 --- a/app/pages/components/loading-button.wrn +++ b/app/pages/components/loading-button.wrn @@ -10,10 +10,10 @@ page LoadingButtoncomponent {
W WRNexusJS - +
-
actions component

LoadingButton

Reusable loading button component.

@wrnexus/ui 0.2.687 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LoadingButton
+      
actions component

LoadingButton

Reusable loading button component.

@wrnexus/ui 0.2.697 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LoadingButton
   label="Continue"
   loadingLabel="Loading…"
   loading="false"
@@ -38,7 +38,7 @@ page LoadingButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/locale-selector.wrn b/app/pages/components/locale-selector.wrn index a4d372ba..88e6f9f9 100644 --- a/app/pages/components/locale-selector.wrn +++ b/app/pages/components/locale-selector.wrn @@ -10,10 +10,10 @@ page LocaleSelectorcomponent {
W WRNexusJS - +
-
forms component

LocaleSelector

Reusable locale selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LocaleSelector
+      
forms component

LocaleSelector

Reusable locale selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LocaleSelector
   label="Locale"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page LocaleSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/localized-route-link.wrn b/app/pages/components/localized-route-link.wrn index c2983d71..9e49f088 100644 --- a/app/pages/components/localized-route-link.wrn +++ b/app/pages/components/localized-route-link.wrn @@ -10,10 +10,10 @@ page LocalizedRouteLinkcomponent {
W WRNexusJS - +
-
actions component

LocalizedRouteLink

Reusable localized route link component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LocalizedRouteLink
+      
actions component

LocalizedRouteLink

Reusable localized route link component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LocalizedRouteLink
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page LocalizedRouteLinkcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/location-picker.wrn b/app/pages/components/location-picker.wrn index bde86645..670ee12a 100644 --- a/app/pages/components/location-picker.wrn +++ b/app/pages/components/location-picker.wrn @@ -10,10 +10,10 @@ page LocationPickercomponent {
W WRNexusJS - +
-
forms component

LocationPicker

Reusable location picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LocationPicker
+      
forms component

LocationPicker

Reusable location picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LocationPicker
   label="Location"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page LocationPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/log-table.wrn b/app/pages/components/log-table.wrn index a3ea73fc..b4b5466a 100644 --- a/app/pages/components/log-table.wrn +++ b/app/pages/components/log-table.wrn @@ -10,10 +10,10 @@ page LogTablecomponent {
W WRNexusJS - +
-
data component

LogTable

Reusable log table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LogTable
+      
data component

LogTable

Reusable log table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LogTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page LogTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/logo-cloud.wrn b/app/pages/components/logo-cloud.wrn index 8345b052..d85f5141 100644 --- a/app/pages/components/logo-cloud.wrn +++ b/app/pages/components/logo-cloud.wrn @@ -10,10 +10,10 @@ page LogoCloudcomponent {
W WRNexusJS - +
-
core component

LogoCloud

Reusable logo cloud component.

@wrnexus/ui 0.2.6811 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LogoCloud
+      
core component

LogoCloud

Reusable logo cloud component.

@wrnexus/ui 0.2.6911 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LogoCloud
   eyebrow="eyebrow"
   title="Trusted by teams building modern products"
   description="description"
@@ -163,7 +163,7 @@ page LogoCloudcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/logo-upload.wrn b/app/pages/components/logo-upload.wrn index ec79d660..dbe5b972 100644 --- a/app/pages/components/logo-upload.wrn +++ b/app/pages/components/logo-upload.wrn @@ -10,10 +10,10 @@ page LogoUploadcomponent {
W WRNexusJS - +
-
content component

LogoUpload

Reusable logo upload component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LogoUpload
+      
content component

LogoUpload

Reusable logo upload component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LogoUpload
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page LogoUploadcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/logo.wrn b/app/pages/components/logo.wrn index 241eb423..ee4669fc 100644 --- a/app/pages/components/logo.wrn +++ b/app/pages/components/logo.wrn @@ -10,10 +10,10 @@ page Logocomponent {
W WRNexusJS - +
-
content component

Logo

Reusable logo component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Logo
+      
content component

Logo

Reusable logo component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Logo
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page Logocomponent {
     }
 }
 
- + } diff --git a/app/pages/components/logout-dialog.wrn b/app/pages/components/logout-dialog.wrn index 69f27533..66c1892a 100644 --- a/app/pages/components/logout-dialog.wrn +++ b/app/pages/components/logout-dialog.wrn @@ -10,10 +10,10 @@ page LogoutDialogcomponent {
W WRNexusJS - +
-
overlays component

LogoutDialog

Reusable logout dialog component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LogoutDialog
+      
overlays component

LogoutDialog

Reusable logout dialog component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LogoutDialog
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page LogoutDialogcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/longitude-input.wrn b/app/pages/components/longitude-input.wrn index 77a2fb4b..6ad73415 100644 --- a/app/pages/components/longitude-input.wrn +++ b/app/pages/components/longitude-input.wrn @@ -10,10 +10,10 @@ page LongitudeInputcomponent {
W WRNexusJS - +
-
forms component

LongitudeInput

Reusable longitude input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LongitudeInput
+      
forms component

LongitudeInput

Reusable longitude input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<LongitudeInput
   label="Longitude"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page LongitudeInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/maintenance-alert.wrn b/app/pages/components/maintenance-alert.wrn index 7d55b63c..2ec446c8 100644 --- a/app/pages/components/maintenance-alert.wrn +++ b/app/pages/components/maintenance-alert.wrn @@ -10,10 +10,10 @@ page MaintenanceAlertcomponent {
W WRNexusJS - +
-
feedback component

MaintenanceAlert

Reusable maintenance alert component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MaintenanceAlert
+      
feedback component

MaintenanceAlert

Reusable maintenance alert component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MaintenanceAlert
   label="Maintenance"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page MaintenanceAlertcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/maintenance-banner.wrn b/app/pages/components/maintenance-banner.wrn index 11290a7c..15ecfbbd 100644 --- a/app/pages/components/maintenance-banner.wrn +++ b/app/pages/components/maintenance-banner.wrn @@ -10,10 +10,10 @@ page MaintenanceBannercomponent {
W WRNexusJS - +
-
feedback component

MaintenanceBanner

Reusable maintenance banner component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MaintenanceBanner
+      
feedback component

MaintenanceBanner

Reusable maintenance banner component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MaintenanceBanner
   label="Maintenance"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page MaintenanceBannercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/maintenance-card.wrn b/app/pages/components/maintenance-card.wrn index 052f90cd..a6334af1 100644 --- a/app/pages/components/maintenance-card.wrn +++ b/app/pages/components/maintenance-card.wrn @@ -10,10 +10,10 @@ page MaintenanceCardcomponent {
W WRNexusJS - +
-
content component

MaintenanceCard

Reusable maintenance card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MaintenanceCard
+      
content component

MaintenanceCard

Reusable maintenance card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MaintenanceCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page MaintenanceCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/maintenance-page.wrn b/app/pages/components/maintenance-page.wrn index 8978b315..9363fb6e 100644 --- a/app/pages/components/maintenance-page.wrn +++ b/app/pages/components/maintenance-page.wrn @@ -10,10 +10,10 @@ page MaintenancePagecomponent {
W WRNexusJS - +
-
content component

MaintenancePage

Reusable maintenance page component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MaintenancePage
+      
content component

MaintenancePage

Reusable maintenance page component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MaintenancePage
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page MaintenancePagecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/maintenance-state.wrn b/app/pages/components/maintenance-state.wrn index 71b6b351..3b0edc47 100644 --- a/app/pages/components/maintenance-state.wrn +++ b/app/pages/components/maintenance-state.wrn @@ -10,10 +10,10 @@ page MaintenanceStatecomponent {
W WRNexusJS - +
-
feedback component

MaintenanceState

Reusable maintenance state component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MaintenanceState
+      
feedback component

MaintenanceState

Reusable maintenance state component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MaintenanceState
   label="Maintenance"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page MaintenanceStatecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/maintenance-window-picker.wrn b/app/pages/components/maintenance-window-picker.wrn index 24de9c21..8403b9f8 100644 --- a/app/pages/components/maintenance-window-picker.wrn +++ b/app/pages/components/maintenance-window-picker.wrn @@ -10,10 +10,10 @@ page MaintenanceWindowPickercomponent {
W WRNexusJS - +
-
forms component

MaintenanceWindowPicker

Reusable maintenance window picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MaintenanceWindowPicker
+      
forms component

MaintenanceWindowPicker

Reusable maintenance window picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MaintenanceWindowPicker
   label="MaintenanceWindow"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page MaintenanceWindowPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/map-picker.wrn b/app/pages/components/map-picker.wrn index 37ab6fe9..6652796c 100644 --- a/app/pages/components/map-picker.wrn +++ b/app/pages/components/map-picker.wrn @@ -10,10 +10,10 @@ page MapPickercomponent {
W WRNexusJS - +
-
forms component

MapPicker

Reusable map picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MapPicker
+      
forms component

MapPicker

Reusable map picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MapPicker
   label="Map"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page MapPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/markdown-editor.wrn b/app/pages/components/markdown-editor.wrn index 7554033c..c85c8c6c 100644 --- a/app/pages/components/markdown-editor.wrn +++ b/app/pages/components/markdown-editor.wrn @@ -10,10 +10,10 @@ page MarkdownEditorcomponent {
W WRNexusJS - +
-
forms component

MarkdownEditor

Reusable markdown editor component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MarkdownEditor
+      
forms component

MarkdownEditor

Reusable markdown editor component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MarkdownEditor
   label="Markdown"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page MarkdownEditorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/marketing-page-shell.wrn b/app/pages/components/marketing-page-shell.wrn index 2545476d..9e5b4de7 100644 --- a/app/pages/components/marketing-page-shell.wrn +++ b/app/pages/components/marketing-page-shell.wrn @@ -10,10 +10,10 @@ page MarketingPageShellcomponent {
W WRNexusJS - +
-
layout component

MarketingPageShell

Reusable marketing page shell component.

@wrnexus/ui 0.2.681 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MarketingPageShell />

Legacy mount name: data-component="MarketingPageShell".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/MarketingPageShell.wrn

component MarketingPageShell {
+      
layout component

MarketingPageShell

Reusable marketing page shell component.

@wrnexus/ui 0.2.691 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MarketingPageShell />

Legacy mount name: data-component="MarketingPageShell".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/MarketingPageShell.wrn

component MarketingPageShell {
   props {
     class = ""
   }
@@ -24,7 +24,7 @@ page MarketingPageShellcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/marketing-section-header.wrn b/app/pages/components/marketing-section-header.wrn index d3913f6e..1219fa2a 100644 --- a/app/pages/components/marketing-section-header.wrn +++ b/app/pages/components/marketing-section-header.wrn @@ -10,10 +10,10 @@ page MarketingSectionHeadercomponent {
W WRNexusJS - +
-
layout component

MarketingSectionHeader

Reusable marketing section header component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MarketingSectionHeader
+      
layout component

MarketingSectionHeader

Reusable marketing section header component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MarketingSectionHeader
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page MarketingSectionHeadercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/masked-secret-field.wrn b/app/pages/components/masked-secret-field.wrn index 4df085de..0cb11de4 100644 --- a/app/pages/components/masked-secret-field.wrn +++ b/app/pages/components/masked-secret-field.wrn @@ -10,10 +10,10 @@ page MaskedSecretFieldcomponent {
W WRNexusJS - +
-
forms component

MaskedSecretField

Reusable masked secret field component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MaskedSecretField
+      
forms component

MaskedSecretField

Reusable masked secret field component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MaskedSecretField
   label="MaskedSecret"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page MaskedSecretFieldcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/mega-menu.wrn b/app/pages/components/mega-menu.wrn index 44111125..2ddf8af8 100644 --- a/app/pages/components/mega-menu.wrn +++ b/app/pages/components/mega-menu.wrn @@ -10,10 +10,10 @@ page MegaMenucomponent {
W WRNexusJS - +
-
overlays component

MegaMenu

Reusable mega menu component.

@wrnexus/ui 0.2.683 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MegaMenu
+      
overlays component

MegaMenu

Reusable mega menu component.

@wrnexus/ui 0.2.693 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MegaMenu
   label="Explore"
   sections="[]"
 />

Legacy mount name: data-component="MegaMenu".

Props and attributes

PropTypeRequirementDefault
labelstringOptional"Explore"
sectionsstringOptional[]
classstringOptional""

Slots

This component does not declare a slot.

Events

  • click

Source contract

Installed source: components/MegaMenu.wrn

component MegaMenu {
@@ -37,7 +37,7 @@ page MegaMenucomponent {
     }
 }
 
- + } diff --git a/app/pages/components/member-list.wrn b/app/pages/components/member-list.wrn index c84420b7..b8faf80d 100644 --- a/app/pages/components/member-list.wrn +++ b/app/pages/components/member-list.wrn @@ -10,10 +10,10 @@ page MemberListcomponent {
W WRNexusJS - +
-
data component

MemberList

Reusable member list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MemberList
+      
data component

MemberList

Reusable member list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MemberList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page MemberListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/mention-input.wrn b/app/pages/components/mention-input.wrn index 5ae7b48e..c1d990e3 100644 --- a/app/pages/components/mention-input.wrn +++ b/app/pages/components/mention-input.wrn @@ -10,10 +10,10 @@ page MentionInputcomponent {
W WRNexusJS - +
-
forms component

MentionInput

Reusable mention input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MentionInput
+      
forms component

MentionInput

Reusable mention input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MentionInput
   label="Mention"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page MentionInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/message-character-counter.wrn b/app/pages/components/message-character-counter.wrn index b67e0145..da99a459 100644 --- a/app/pages/components/message-character-counter.wrn +++ b/app/pages/components/message-character-counter.wrn @@ -10,10 +10,10 @@ page MessageCharacterCountercomponent {
W WRNexusJS - +
-
feedback component

MessageCharacterCounter

Reusable message character counter component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MessageCharacterCounter
+      
feedback component

MessageCharacterCounter

Reusable message character counter component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MessageCharacterCounter
   label="MessageCharacter"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page MessageCharacterCountercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/message-composer-preview.wrn b/app/pages/components/message-composer-preview.wrn index 4e3fe05c..46efc6aa 100644 --- a/app/pages/components/message-composer-preview.wrn +++ b/app/pages/components/message-composer-preview.wrn @@ -10,10 +10,10 @@ page MessageComposerPreviewcomponent {
W WRNexusJS - +
-
content component

MessageComposerPreview

Reusable message composer preview component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MessageComposerPreview
+      
content component

MessageComposerPreview

Reusable message composer preview component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MessageComposerPreview
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page MessageComposerPreviewcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/message-composer.wrn b/app/pages/components/message-composer.wrn index 01f04344..b1860431 100644 --- a/app/pages/components/message-composer.wrn +++ b/app/pages/components/message-composer.wrn @@ -10,10 +10,10 @@ page MessageComposercomponent {
W WRNexusJS - +
-
content component

MessageComposer

Reusable message composer component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MessageComposer
+      
content component

MessageComposer

Reusable message composer component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MessageComposer
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page MessageComposercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/message-limit-input.wrn b/app/pages/components/message-limit-input.wrn index 6aebe628..5a51ad14 100644 --- a/app/pages/components/message-limit-input.wrn +++ b/app/pages/components/message-limit-input.wrn @@ -10,10 +10,10 @@ page MessageLimitInputcomponent {
W WRNexusJS - +
-
forms component

MessageLimitInput

Reusable message limit input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MessageLimitInput
+      
forms component

MessageLimitInput

Reusable message limit input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MessageLimitInput
   label="MessageLimit"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page MessageLimitInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/message-preview.wrn b/app/pages/components/message-preview.wrn index c915ef8c..7854e86f 100644 --- a/app/pages/components/message-preview.wrn +++ b/app/pages/components/message-preview.wrn @@ -10,10 +10,10 @@ page MessagePreviewcomponent {
W WRNexusJS - +
-
content component

MessagePreview

Reusable message preview component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MessagePreview
+      
content component

MessagePreview

Reusable message preview component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MessagePreview
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page MessagePreviewcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/message-volume-slider.wrn b/app/pages/components/message-volume-slider.wrn index 367f671e..e108638d 100644 --- a/app/pages/components/message-volume-slider.wrn +++ b/app/pages/components/message-volume-slider.wrn @@ -10,10 +10,10 @@ page MessageVolumeSlidercomponent {
W WRNexusJS - +
-
content component

MessageVolumeSlider

Reusable message volume slider component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MessageVolumeSlider
+      
content component

MessageVolumeSlider

Reusable message volume slider component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MessageVolumeSlider
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page MessageVolumeSlidercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/metric-card.wrn b/app/pages/components/metric-card.wrn index 558d7cd1..f8070355 100644 --- a/app/pages/components/metric-card.wrn +++ b/app/pages/components/metric-card.wrn @@ -10,10 +10,10 @@ page MetricCardcomponent {
W WRNexusJS - +
-
content component

MetricCard

Reusable metric card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MetricCard
+      
content component

MetricCard

Reusable metric card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MetricCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page MetricCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/metric-grid.wrn b/app/pages/components/metric-grid.wrn index ad218ef4..34c35227 100644 --- a/app/pages/components/metric-grid.wrn +++ b/app/pages/components/metric-grid.wrn @@ -10,10 +10,10 @@ page MetricGridcomponent {
W WRNexusJS - +
-
data component

MetricGrid

Reusable metric grid component.

@wrnexus/ui 0.2.683 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MetricGrid
+      
data component

MetricGrid

Reusable metric grid component.

@wrnexus/ui 0.2.693 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MetricGrid
   label="Key metrics"
   metrics="[]"
 />

Legacy mount name: data-component="MetricGrid".

Props and attributes

PropTypeRequirementDefault
labelstringOptional"Key metrics"
metricsstringOptional[]
classstringOptional""

Slots

This component does not declare a slot.

Events

This component does not declare a custom event.

Source contract

Installed source: components/MetricGrid.wrn

component MetricGrid {
@@ -31,7 +31,7 @@ page MetricGridcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/metric-text.wrn b/app/pages/components/metric-text.wrn index 49158a5f..9d803988 100644 --- a/app/pages/components/metric-text.wrn +++ b/app/pages/components/metric-text.wrn @@ -10,10 +10,10 @@ page MetricTextcomponent {
W WRNexusJS - +
-
content component

MetricText

Reusable metric text component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MetricText
+      
content component

MetricText

Reusable metric text component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MetricText
   text="text"
   align="start"
 />

Legacy mount name: data-component="MetricText".

Props and attributes

PropTypeRequirementDefault
textstringOptional""
alignstringOptional"start"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/MetricText.wrn

component MetricText {
@@ -28,7 +28,7 @@ page MetricTextcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/metric.wrn b/app/pages/components/metric.wrn index 4760008a..2cde2c77 100644 --- a/app/pages/components/metric.wrn +++ b/app/pages/components/metric.wrn @@ -10,10 +10,10 @@ page Metriccomponent {
W WRNexusJS - +
-
visualization component

Metric

Reusable metric component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Metric
+      
visualization component

Metric

Reusable metric component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Metric
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page Metriccomponent {
     }
 }
 
- + } diff --git a/app/pages/components/minute-picker.wrn b/app/pages/components/minute-picker.wrn index 3505ade4..1e431ef8 100644 --- a/app/pages/components/minute-picker.wrn +++ b/app/pages/components/minute-picker.wrn @@ -10,10 +10,10 @@ page MinutePickercomponent {
W WRNexusJS - +
-
forms component

MinutePicker

Reusable minute picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MinutePicker
+      
forms component

MinutePicker

Reusable minute picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MinutePicker
   label="Minute"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page MinutePickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/mission-section.wrn b/app/pages/components/mission-section.wrn index a14c461e..afca50a0 100644 --- a/app/pages/components/mission-section.wrn +++ b/app/pages/components/mission-section.wrn @@ -10,10 +10,10 @@ page MissionSectioncomponent {
W WRNexusJS - +
-
layout component

MissionSection

Reusable mission section component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MissionSection
+      
layout component

MissionSection

Reusable mission section component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MissionSection
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page MissionSectioncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/mobile-device-frame.wrn b/app/pages/components/mobile-device-frame.wrn index 4adf29fa..28253ac2 100644 --- a/app/pages/components/mobile-device-frame.wrn +++ b/app/pages/components/mobile-device-frame.wrn @@ -10,10 +10,10 @@ page MobileDeviceFramecomponent {
W WRNexusJS - +
-
layout component

MobileDeviceFrame

Reusable mobile device frame component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MobileDeviceFrame
+      
layout component

MobileDeviceFrame

Reusable mobile device frame component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MobileDeviceFrame
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page MobileDeviceFramecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/mobile-input.wrn b/app/pages/components/mobile-input.wrn index e6ae13f6..b9e143fe 100644 --- a/app/pages/components/mobile-input.wrn +++ b/app/pages/components/mobile-input.wrn @@ -10,10 +10,10 @@ page MobileInputcomponent {
W WRNexusJS - +
-
forms component

MobileInput

Reusable mobile input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MobileInput
+      
forms component

MobileInput

Reusable mobile input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MobileInput
   label="Mobile"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page MobileInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/mobile-menu-button.wrn b/app/pages/components/mobile-menu-button.wrn index 85d71c99..dc49ab3c 100644 --- a/app/pages/components/mobile-menu-button.wrn +++ b/app/pages/components/mobile-menu-button.wrn @@ -10,10 +10,10 @@ page MobileMenuButtoncomponent {
W WRNexusJS - +
-
actions component

MobileMenuButton

Reusable mobile menu button component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MobileMenuButton
+      
actions component

MobileMenuButton

Reusable mobile menu button component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MobileMenuButton
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page MobileMenuButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/mobile-navigation.wrn b/app/pages/components/mobile-navigation.wrn index 97ea67fc..dd79f46e 100644 --- a/app/pages/components/mobile-navigation.wrn +++ b/app/pages/components/mobile-navigation.wrn @@ -10,10 +10,10 @@ page MobileNavigationcomponent {
W WRNexusJS - +
-
layout component

MobileNavigation

Reusable mobile navigation component.

@wrnexus/ui 0.2.684 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MobileNavigation
+      
layout component

MobileNavigation

Reusable mobile navigation component.

@wrnexus/ui 0.2.694 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MobileNavigation
   label="Menu"
   closeLabel="Close menu"
   items="[]"
@@ -37,7 +37,7 @@ page MobileNavigationcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/mobile-table-card.wrn b/app/pages/components/mobile-table-card.wrn index 5067eee0..9ce9d4e6 100644 --- a/app/pages/components/mobile-table-card.wrn +++ b/app/pages/components/mobile-table-card.wrn @@ -10,10 +10,10 @@ page MobileTableCardcomponent {
W WRNexusJS - +
-
content component

MobileTableCard

Reusable mobile table card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MobileTableCard
+      
content component

MobileTableCard

Reusable mobile table card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MobileTableCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page MobileTableCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/modal.wrn b/app/pages/components/modal.wrn index a3df2658..ba5ed66f 100644 --- a/app/pages/components/modal.wrn +++ b/app/pages/components/modal.wrn @@ -10,10 +10,10 @@ page Modalcomponent {
W WRNexusJS - +
-
core component

Modal

Reusable modal component.

@wrnexus/ui 0.2.686 props1 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Modal
+      
core component

Modal

Reusable modal component.

@wrnexus/ui 0.2.696 props1 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Modal
   title="Dialog"
   description="description"
   open="false"
@@ -49,7 +49,7 @@ page Modalcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/month-picker.wrn b/app/pages/components/month-picker.wrn index 2713f4e9..56c3e94c 100644 --- a/app/pages/components/month-picker.wrn +++ b/app/pages/components/month-picker.wrn @@ -10,10 +10,10 @@ page MonthPickercomponent {
W WRNexusJS - +
-
forms component

MonthPicker

Reusable month picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MonthPicker
+      
forms component

MonthPicker

Reusable month picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MonthPicker
   label="Month"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page MonthPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/month-year-picker.wrn b/app/pages/components/month-year-picker.wrn index 32a20f07..39a67d2d 100644 --- a/app/pages/components/month-year-picker.wrn +++ b/app/pages/components/month-year-picker.wrn @@ -10,10 +10,10 @@ page MonthYearPickercomponent {
W WRNexusJS - +
-
forms component

MonthYearPicker

Reusable month year picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MonthYearPicker
+      
forms component

MonthYearPicker

Reusable month year picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MonthYearPicker
   label="MonthYear"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page MonthYearPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/monthly-volume-selector.wrn b/app/pages/components/monthly-volume-selector.wrn index 869aa795..f5560ab9 100644 --- a/app/pages/components/monthly-volume-selector.wrn +++ b/app/pages/components/monthly-volume-selector.wrn @@ -10,10 +10,10 @@ page MonthlyVolumeSelectorcomponent {
W WRNexusJS - +
-
forms component

MonthlyVolumeSelector

Reusable monthly volume selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MonthlyVolumeSelector
+      
forms component

MonthlyVolumeSelector

Reusable monthly volume selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MonthlyVolumeSelector
   label="MonthlyVolume"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page MonthlyVolumeSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/multi-file-upload.wrn b/app/pages/components/multi-file-upload.wrn index 5f879636..7dddf327 100644 --- a/app/pages/components/multi-file-upload.wrn +++ b/app/pages/components/multi-file-upload.wrn @@ -10,10 +10,10 @@ page MultiFileUploadcomponent {
W WRNexusJS - +
-
content component

MultiFileUpload

Reusable multi file upload component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MultiFileUpload
+      
content component

MultiFileUpload

Reusable multi file upload component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MultiFileUpload
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page MultiFileUploadcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/multi-select.wrn b/app/pages/components/multi-select.wrn index cefee525..fee5985f 100644 --- a/app/pages/components/multi-select.wrn +++ b/app/pages/components/multi-select.wrn @@ -10,10 +10,10 @@ page MultiSelectcomponent {
W WRNexusJS - +
-
core component

MultiSelect

Reusable multi select component.

@wrnexus/ui 0.2.688 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MultiSelect
+      
core component

MultiSelect

Reusable multi select component.

@wrnexus/ui 0.2.698 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MultiSelect
   id="multi-select"
   name="name"
   label="Choose options"
@@ -38,7 +38,7 @@ page MultiSelectcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/multiple-email-input.wrn b/app/pages/components/multiple-email-input.wrn index 2831fbea..54d42801 100644 --- a/app/pages/components/multiple-email-input.wrn +++ b/app/pages/components/multiple-email-input.wrn @@ -10,10 +10,10 @@ page MultipleEmailInputcomponent {
W WRNexusJS - +
-
forms component

MultipleEmailInput

Reusable multiple email input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MultipleEmailInput
+      
forms component

MultipleEmailInput

Reusable multiple email input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MultipleEmailInput
   label="MultipleEmail"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page MultipleEmailInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/muted-text.wrn b/app/pages/components/muted-text.wrn index 4a32e501..7e758fdd 100644 --- a/app/pages/components/muted-text.wrn +++ b/app/pages/components/muted-text.wrn @@ -10,10 +10,10 @@ page MutedTextcomponent {
W WRNexusJS - +
-
content component

MutedText

Reusable muted text component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MutedText
+      
content component

MutedText

Reusable muted text component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<MutedText
   text="text"
   align="start"
 />

Legacy mount name: data-component="MutedText".

Props and attributes

PropTypeRequirementDefault
textstringOptional""
alignstringOptional"start"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/MutedText.wrn

component MutedText {
@@ -28,7 +28,7 @@ page MutedTextcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/name-input.wrn b/app/pages/components/name-input.wrn index 5fc18246..b1216a2a 100644 --- a/app/pages/components/name-input.wrn +++ b/app/pages/components/name-input.wrn @@ -10,10 +10,10 @@ page NameInputcomponent {
W WRNexusJS - +
-
forms component

NameInput

Reusable name input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NameInput
+      
forms component

NameInput

Reusable name input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NameInput
   label="Name"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page NameInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/narrow-container.wrn b/app/pages/components/narrow-container.wrn index 6251f9a3..83fb0dea 100644 --- a/app/pages/components/narrow-container.wrn +++ b/app/pages/components/narrow-container.wrn @@ -10,10 +10,10 @@ page NarrowContainercomponent {
W WRNexusJS - +
-
core component

NarrowContainer

Reusable narrow container component.

@wrnexus/ui 0.2.681 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NarrowContainer />

Legacy mount name: data-component="NarrowContainer".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/NarrowContainer.wrn

component NarrowContainer {
+      
core component

NarrowContainer

Reusable narrow container component.

@wrnexus/ui 0.2.691 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NarrowContainer />

Legacy mount name: data-component="NarrowContainer".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/NarrowContainer.wrn

component NarrowContainer {
   props {
     class = ""
   }
@@ -24,7 +24,7 @@ page NarrowContainercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/navigation-item.wrn b/app/pages/components/navigation-item.wrn index b8103cd3..b90b3849 100644 --- a/app/pages/components/navigation-item.wrn +++ b/app/pages/components/navigation-item.wrn @@ -10,10 +10,10 @@ page NavigationItemcomponent {
W WRNexusJS - +
-
content component

NavigationItem

Reusable navigation item component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NavigationItem
+      
content component

NavigationItem

Reusable navigation item component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NavigationItem
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page NavigationItemcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/navigation-mega-menu.wrn b/app/pages/components/navigation-mega-menu.wrn index 0a8abe48..76baaf50 100644 --- a/app/pages/components/navigation-mega-menu.wrn +++ b/app/pages/components/navigation-mega-menu.wrn @@ -10,10 +10,10 @@ page NavigationMegaMenucomponent {
W WRNexusJS - +
-
overlays component

NavigationMegaMenu

Reusable navigation mega menu component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NavigationMegaMenu
+      
overlays component

NavigationMegaMenu

Reusable navigation mega menu component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NavigationMegaMenu
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page NavigationMegaMenucomponent {
     }
 }
 
- + } diff --git a/app/pages/components/navigation.wrn b/app/pages/components/navigation.wrn index 85816811..14cc468e 100644 --- a/app/pages/components/navigation.wrn +++ b/app/pages/components/navigation.wrn @@ -10,10 +10,10 @@ page Navigationcomponent {
W WRNexusJS - +
-
layout component

Navigation

Reusable navigation component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Navigation
+      
layout component

Navigation

Reusable navigation component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Navigation
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page Navigationcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/new-badge.wrn b/app/pages/components/new-badge.wrn index a919ed76..811125b4 100644 --- a/app/pages/components/new-badge.wrn +++ b/app/pages/components/new-badge.wrn @@ -10,10 +10,10 @@ page NewBadgecomponent {
W WRNexusJS - +
-
feedback component

NewBadge

Reusable new badge component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NewBadge
+      
feedback component

NewBadge

Reusable new badge component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NewBadge
   label="New"
   variant="default"
 />

Legacy mount name: data-component="NewBadge".

Props and attributes

PropTypeRequirementDefault
labelstringOptional"New"
variantstringOptional"default"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/NewBadge.wrn

component NewBadge {
@@ -28,7 +28,7 @@ page NewBadgecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/new-password-input.wrn b/app/pages/components/new-password-input.wrn index 5b6496b3..d7d3e634 100644 --- a/app/pages/components/new-password-input.wrn +++ b/app/pages/components/new-password-input.wrn @@ -10,10 +10,10 @@ page NewPasswordInputcomponent {
W WRNexusJS - +
-
forms component

NewPasswordInput

Reusable new password input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NewPasswordInput
+      
forms component

NewPasswordInput

Reusable new password input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NewPasswordInput
   label="NewPassword"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page NewPasswordInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/newsletter-cta.wrn b/app/pages/components/newsletter-cta.wrn index a90bb0b0..4aea70cb 100644 --- a/app/pages/components/newsletter-cta.wrn +++ b/app/pages/components/newsletter-cta.wrn @@ -10,10 +10,10 @@ page NewsletterCTAcomponent {
W WRNexusJS - +
-
actions component

NewsletterCTA

Reusable newsletter c t a component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NewsletterCTA
+      
actions component

NewsletterCTA

Reusable newsletter c t a component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NewsletterCTA
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page NewsletterCTAcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/newsletter-form.wrn b/app/pages/components/newsletter-form.wrn index d2ab2930..4bdb4c02 100644 --- a/app/pages/components/newsletter-form.wrn +++ b/app/pages/components/newsletter-form.wrn @@ -10,10 +10,10 @@ page NewsletterFormcomponent {
W WRNexusJS - +
-
content component

NewsletterForm

Reusable newsletter form component.

@wrnexus/ui 0.2.6819 props0 slots2 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NewsletterForm
+      
content component

NewsletterForm

Reusable newsletter form component.

@wrnexus/ui 0.2.6919 props0 slots2 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NewsletterForm
   eyebrow="eyebrow"
   title="Stay up to date"
   description="description"
@@ -226,7 +226,7 @@ page NewsletterFormcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/no-results-state.wrn b/app/pages/components/no-results-state.wrn index f29fdfe4..837ee300 100644 --- a/app/pages/components/no-results-state.wrn +++ b/app/pages/components/no-results-state.wrn @@ -10,10 +10,10 @@ page NoResultsStatecomponent {
W WRNexusJS - +
-
feedback component

NoResultsState

Reusable no results state component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NoResultsState
+      
feedback component

NoResultsState

Reusable no results state component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NoResultsState
   label="NoResults"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page NoResultsStatecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/not-found-page.wrn b/app/pages/components/not-found-page.wrn index efe6d16f..68d2024c 100644 --- a/app/pages/components/not-found-page.wrn +++ b/app/pages/components/not-found-page.wrn @@ -10,10 +10,10 @@ page NotFoundPagecomponent {
W WRNexusJS - +
-
content component

NotFoundPage

Reusable not found page component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NotFoundPage
+      
content component

NotFoundPage

Reusable not found page component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NotFoundPage
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page NotFoundPagecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/not-found-state.wrn b/app/pages/components/not-found-state.wrn index c14a3805..7059eef7 100644 --- a/app/pages/components/not-found-state.wrn +++ b/app/pages/components/not-found-state.wrn @@ -10,10 +10,10 @@ page NotFoundStatecomponent {
W WRNexusJS - +
-
feedback component

NotFoundState

Reusable not found state component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NotFoundState
+      
feedback component

NotFoundState

Reusable not found state component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NotFoundState
   label="NotFound"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page NotFoundStatecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/notification-card.wrn b/app/pages/components/notification-card.wrn index fd89c18a..d5477da6 100644 --- a/app/pages/components/notification-card.wrn +++ b/app/pages/components/notification-card.wrn @@ -10,10 +10,10 @@ page NotificationCardcomponent {
W WRNexusJS - +
-
content component

NotificationCard

Reusable notification card component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NotificationCard
+      
content component

NotificationCard

Reusable notification card component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NotificationCard
   title="title"
   description="description"
   href="href"
@@ -36,7 +36,7 @@ page NotificationCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/notification-dot.wrn b/app/pages/components/notification-dot.wrn index f19607ec..8603579d 100644 --- a/app/pages/components/notification-dot.wrn +++ b/app/pages/components/notification-dot.wrn @@ -10,10 +10,10 @@ page NotificationDotcomponent {
W WRNexusJS - +
-
core component

NotificationDot

Reusable notification dot component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NotificationDot
+      
core component

NotificationDot

Reusable notification dot component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NotificationDot
   label="Notification"
   variant="default"
 />

Legacy mount name: data-component="NotificationDot".

Props and attributes

PropTypeRequirementDefault
labelstringOptional"Notification"
variantstringOptional"default"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/NotificationDot.wrn

component NotificationDot {
@@ -28,7 +28,7 @@ page NotificationDotcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/notification-list.wrn b/app/pages/components/notification-list.wrn index 08cec15b..481b5adb 100644 --- a/app/pages/components/notification-list.wrn +++ b/app/pages/components/notification-list.wrn @@ -10,10 +10,10 @@ page NotificationListcomponent {
W WRNexusJS - +
-
data component

NotificationList

Reusable notification list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NotificationList
+      
data component

NotificationList

Reusable notification list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NotificationList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page NotificationListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/number-input.wrn b/app/pages/components/number-input.wrn index 0ff0af92..272cbec0 100644 --- a/app/pages/components/number-input.wrn +++ b/app/pages/components/number-input.wrn @@ -10,10 +10,10 @@ page NumberInputcomponent {
W WRNexusJS - +
-
forms component

NumberInput

Reusable number input component.

@wrnexus/ui 0.2.6812 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NumberInput
+      
forms component

NumberInput

Reusable number input component.

@wrnexus/ui 0.2.6912 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<NumberInput
   id="id"
   name="name"
   label="Number"
@@ -45,7 +45,7 @@ page NumberInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/office-card.wrn b/app/pages/components/office-card.wrn index 49376b60..4181493f 100644 --- a/app/pages/components/office-card.wrn +++ b/app/pages/components/office-card.wrn @@ -10,10 +10,10 @@ page OfficeCardcomponent {
W WRNexusJS - +
-
content component

OfficeCard

Reusable office card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OfficeCard
+      
content component

OfficeCard

Reusable office card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OfficeCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page OfficeCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/offline-page.wrn b/app/pages/components/offline-page.wrn index fe5b84d6..edbf1bbe 100644 --- a/app/pages/components/offline-page.wrn +++ b/app/pages/components/offline-page.wrn @@ -10,10 +10,10 @@ page OfflinePagecomponent {
W WRNexusJS - +
-
content component

OfflinePage

Reusable offline page component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OfflinePage
+      
content component

OfflinePage

Reusable offline page component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OfflinePage
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page OfflinePagecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/offline-state.wrn b/app/pages/components/offline-state.wrn index e5f8e3e3..58ca394e 100644 --- a/app/pages/components/offline-state.wrn +++ b/app/pages/components/offline-state.wrn @@ -10,10 +10,10 @@ page OfflineStatecomponent {
W WRNexusJS - +
-
feedback component

OfflineState

Reusable offline state component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OfflineState
+      
feedback component

OfflineState

Reusable offline state component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OfflineState
   label="Offline"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page OfflineStatecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/onboarding-progress.wrn b/app/pages/components/onboarding-progress.wrn index 405d99bc..b3e4c57d 100644 --- a/app/pages/components/onboarding-progress.wrn +++ b/app/pages/components/onboarding-progress.wrn @@ -10,10 +10,10 @@ page OnboardingProgresscomponent {
W WRNexusJS - +
-
visualization component

OnboardingProgress

Reusable onboarding progress component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OnboardingProgress
+      
visualization component

OnboardingProgress

Reusable onboarding progress component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OnboardingProgress
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page OnboardingProgresscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/one-time-secret-display.wrn b/app/pages/components/one-time-secret-display.wrn index 7f22cb20..e7138666 100644 --- a/app/pages/components/one-time-secret-display.wrn +++ b/app/pages/components/one-time-secret-display.wrn @@ -10,10 +10,10 @@ page OneTimeSecretDisplaycomponent {
W WRNexusJS - +
-
content component

OneTimeSecretDisplay

Reusable one time secret display component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OneTimeSecretDisplay
+      
content component

OneTimeSecretDisplay

Reusable one time secret display component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OneTimeSecretDisplay
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page OneTimeSecretDisplaycomponent {
     }
 }
 
- + } diff --git a/app/pages/components/online-indicator.wrn b/app/pages/components/online-indicator.wrn index cb3b8ee1..d292bccc 100644 --- a/app/pages/components/online-indicator.wrn +++ b/app/pages/components/online-indicator.wrn @@ -10,10 +10,10 @@ page OnlineIndicatorcomponent {
W WRNexusJS - +
-
feedback component

OnlineIndicator

Reusable online indicator component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OnlineIndicator
+      
feedback component

OnlineIndicator

Reusable online indicator component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OnlineIndicator
   label="Online"
   variant="default"
 />

Legacy mount name: data-component="OnlineIndicator".

Props and attributes

PropTypeRequirementDefault
labelstringOptional"Online"
variantstringOptional"default"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/OnlineIndicator.wrn

component OnlineIndicator {
@@ -28,7 +28,7 @@ page OnlineIndicatorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/opacity-slider.wrn b/app/pages/components/opacity-slider.wrn index ac7cc2d6..cb3ec7e2 100644 --- a/app/pages/components/opacity-slider.wrn +++ b/app/pages/components/opacity-slider.wrn @@ -10,10 +10,10 @@ page OpacitySlidercomponent {
W WRNexusJS - +
-
content component

OpacitySlider

Reusable opacity slider component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OpacitySlider
+      
content component

OpacitySlider

Reusable opacity slider component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OpacitySlider
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page OpacitySlidercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/open-apicta.wrn b/app/pages/components/open-apicta.wrn index 72a757fc..8eb6e68e 100644 --- a/app/pages/components/open-apicta.wrn +++ b/app/pages/components/open-apicta.wrn @@ -10,10 +10,10 @@ page OpenAPICTAcomponent {
W WRNexusJS - +
-
actions component

OpenAPICTA

Reusable open a p i c t a component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OpenAPICTA
+      
actions component

OpenAPICTA

Reusable open a p i c t a component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OpenAPICTA
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page OpenAPICTAcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/optional-indicator.wrn b/app/pages/components/optional-indicator.wrn index 121fa656..b4ced524 100644 --- a/app/pages/components/optional-indicator.wrn +++ b/app/pages/components/optional-indicator.wrn @@ -10,10 +10,10 @@ page OptionalIndicatorcomponent {
W WRNexusJS - +
-
feedback component

OptionalIndicator

Reusable optional indicator component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OptionalIndicator
+      
feedback component

OptionalIndicator

Reusable optional indicator component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OptionalIndicator
   label="Optional"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page OptionalIndicatorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/organization-selector.wrn b/app/pages/components/organization-selector.wrn index f3220ec1..4169dc38 100644 --- a/app/pages/components/organization-selector.wrn +++ b/app/pages/components/organization-selector.wrn @@ -10,10 +10,10 @@ page OrganizationSelectorcomponent {
W WRNexusJS - +
-
forms component

OrganizationSelector

Reusable organization selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OrganizationSelector
+      
forms component

OrganizationSelector

Reusable organization selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OrganizationSelector
   label="Organization"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page OrganizationSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/otp-input.wrn b/app/pages/components/otp-input.wrn index a369c6e8..ff4e05ce 100644 --- a/app/pages/components/otp-input.wrn +++ b/app/pages/components/otp-input.wrn @@ -10,10 +10,10 @@ page OtpInputcomponent {
W WRNexusJS - +
-
forms component

OtpInput

Reusable otp input component.

@wrnexus/ui 0.2.684 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OtpInput
+      
forms component

OtpInput

Reusable otp input component.

@wrnexus/ui 0.2.694 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OtpInput
   name="otp"
   length="6"
   label="Verification code"
@@ -32,7 +32,7 @@ page OtpInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/otp-verification-form.wrn b/app/pages/components/otp-verification-form.wrn index 0c2fd915..d6c7ba42 100644 --- a/app/pages/components/otp-verification-form.wrn +++ b/app/pages/components/otp-verification-form.wrn @@ -10,10 +10,10 @@ page OtpVerificationFormcomponent {
W WRNexusJS - +
-
content component

OtpVerificationForm

Reusable otp verification form component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OtpVerificationForm
+      
content component

OtpVerificationForm

Reusable otp verification form component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OtpVerificationForm
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page OtpVerificationFormcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/outlined-card.wrn b/app/pages/components/outlined-card.wrn index ca20928a..33347f1e 100644 --- a/app/pages/components/outlined-card.wrn +++ b/app/pages/components/outlined-card.wrn @@ -10,10 +10,10 @@ page OutlinedCardcomponent {
W WRNexusJS - +
-
content component

OutlinedCard

Reusable outlined card component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OutlinedCard
+      
content component

OutlinedCard

Reusable outlined card component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<OutlinedCard
   title="title"
   description="description"
   href="href"
@@ -36,7 +36,7 @@ page OutlinedCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/page-alert.wrn b/app/pages/components/page-alert.wrn index a04bf106..db4ef4ae 100644 --- a/app/pages/components/page-alert.wrn +++ b/app/pages/components/page-alert.wrn @@ -10,10 +10,10 @@ page PageAlertcomponent {
W WRNexusJS - +
-
feedback component

PageAlert

Reusable page alert component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PageAlert
+      
feedback component

PageAlert

Reusable page alert component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PageAlert
   label="Page"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page PageAlertcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/page-header.wrn b/app/pages/components/page-header.wrn index 15961354..e8fbe22c 100644 --- a/app/pages/components/page-header.wrn +++ b/app/pages/components/page-header.wrn @@ -10,10 +10,10 @@ page PageHeadercomponent {
W WRNexusJS - +
-
core component

PageHeader

Reusable page header component.

@wrnexus/ui 0.2.6816 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PageHeader
+      
core component

PageHeader

Reusable page header component.

@wrnexus/ui 0.2.6916 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PageHeader
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -186,7 +186,7 @@ page PageHeadercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/page-heading.wrn b/app/pages/components/page-heading.wrn index bdda6c9f..912826ef 100644 --- a/app/pages/components/page-heading.wrn +++ b/app/pages/components/page-heading.wrn @@ -10,10 +10,10 @@ page PageHeadingcomponent {
W WRNexusJS - +
-
core component

PageHeading

Reusable page heading component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PageHeading
+      
core component

PageHeading

Reusable page heading component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PageHeading
   text="text"
   align="start"
 />

Legacy mount name: data-component="PageHeading".

Props and attributes

PropTypeRequirementDefault
textstringOptional""
alignstringOptional"start"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/PageHeading.wrn

component PageHeading {
@@ -28,7 +28,7 @@ page PageHeadingcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/page-shell.wrn b/app/pages/components/page-shell.wrn index b8a3e1a7..6b832abd 100644 --- a/app/pages/components/page-shell.wrn +++ b/app/pages/components/page-shell.wrn @@ -10,10 +10,10 @@ page PageShellcomponent {
W WRNexusJS - +
-
core component

PageShell

Reusable page shell component.

@wrnexus/ui 0.2.681 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PageShell />

Legacy mount name: data-component="PageShell".

Props and attributes

PropTypeRequirementDefault
classNamestringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/PageShell.wrn

component PageShell {
+      
core component

PageShell

Reusable page shell component.

@wrnexus/ui 0.2.691 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PageShell />

Legacy mount name: data-component="PageShell".

Props and attributes

PropTypeRequirementDefault
classNamestringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/PageShell.wrn

component PageShell {
   props {
     className = ""
   }
@@ -24,7 +24,7 @@ page PageShellcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/page-skeleton.wrn b/app/pages/components/page-skeleton.wrn index 59d35fa6..1f901b4c 100644 --- a/app/pages/components/page-skeleton.wrn +++ b/app/pages/components/page-skeleton.wrn @@ -10,10 +10,10 @@ page PageSkeletoncomponent {
W WRNexusJS - +
-
feedback component

PageSkeleton

Reusable page skeleton component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PageSkeleton
+      
feedback component

PageSkeleton

Reusable page skeleton component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PageSkeleton
   label="Page"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page PageSkeletoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/pagination.wrn b/app/pages/components/pagination.wrn index 1440a935..b8630ecc 100644 --- a/app/pages/components/pagination.wrn +++ b/app/pages/components/pagination.wrn @@ -10,10 +10,10 @@ page Paginationcomponent {
W WRNexusJS - +
-
core component

Pagination

Reusable pagination component.

@wrnexus/ui 0.2.6812 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Pagination
+      
core component

Pagination

Reusable pagination component.

@wrnexus/ui 0.2.6912 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Pagination
   currentPage="1"
   totalPages="1"
   previousHref="previousHref"
@@ -199,7 +199,7 @@ page Paginationcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/panel.wrn b/app/pages/components/panel.wrn index 91473fca..089c73f4 100644 --- a/app/pages/components/panel.wrn +++ b/app/pages/components/panel.wrn @@ -10,10 +10,10 @@ page Panelcomponent {
W WRNexusJS - +
-
layout component

Panel

Reusable panel component.

@wrnexus/ui 0.2.681 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Panel />

Legacy mount name: data-component="Panel".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Panel.wrn

component Panel {
+      
layout component

Panel

Reusable panel component.

@wrnexus/ui 0.2.691 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Panel />

Legacy mount name: data-component="Panel".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Panel.wrn

component Panel {
   props {
     class = ""
   }
@@ -24,7 +24,7 @@ page Panelcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/partner-application-form.wrn b/app/pages/components/partner-application-form.wrn index 97701532..bfc7417c 100644 --- a/app/pages/components/partner-application-form.wrn +++ b/app/pages/components/partner-application-form.wrn @@ -10,10 +10,10 @@ page PartnerApplicationFormcomponent {
W WRNexusJS - +
-
content component

PartnerApplicationForm

Reusable partner application form component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PartnerApplicationForm
+      
content component

PartnerApplicationForm

Reusable partner application form component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PartnerApplicationForm
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page PartnerApplicationFormcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/partner-logo-grid.wrn b/app/pages/components/partner-logo-grid.wrn index 4801d670..24a082ac 100644 --- a/app/pages/components/partner-logo-grid.wrn +++ b/app/pages/components/partner-logo-grid.wrn @@ -10,10 +10,10 @@ page PartnerLogoGridcomponent {
W WRNexusJS - +
-
data component

PartnerLogoGrid

Reusable partner logo grid component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PartnerLogoGrid
+      
data component

PartnerLogoGrid

Reusable partner logo grid component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PartnerLogoGrid
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page PartnerLogoGridcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/partner-program-card.wrn b/app/pages/components/partner-program-card.wrn index abd2b8ea..5d164eb5 100644 --- a/app/pages/components/partner-program-card.wrn +++ b/app/pages/components/partner-program-card.wrn @@ -10,10 +10,10 @@ page PartnerProgramCardcomponent {
W WRNexusJS - +
-
content component

PartnerProgramCard

Reusable partner program card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PartnerProgramCard
+      
content component

PartnerProgramCard

Reusable partner program card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PartnerProgramCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page PartnerProgramCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/passkey-button.wrn b/app/pages/components/passkey-button.wrn index 5fcd6b91..7d59f381 100644 --- a/app/pages/components/passkey-button.wrn +++ b/app/pages/components/passkey-button.wrn @@ -10,10 +10,10 @@ page PasskeyButtoncomponent {
W WRNexusJS - +
-
actions component

PasskeyButton

Reusable passkey button component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PasskeyButton
+      
actions component

PasskeyButton

Reusable passkey button component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PasskeyButton
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page PasskeyButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/password-input.wrn b/app/pages/components/password-input.wrn index 35a0948b..a67a6ba8 100644 --- a/app/pages/components/password-input.wrn +++ b/app/pages/components/password-input.wrn @@ -10,10 +10,10 @@ page PasswordInputcomponent {
W WRNexusJS - +
-
forms component

PasswordInput

Reusable password input component.

@wrnexus/ui 0.2.6812 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PasswordInput
+      
forms component

PasswordInput

Reusable password input component.

@wrnexus/ui 0.2.6912 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PasswordInput
   id="id"
   name="name"
   label="Password"
@@ -45,7 +45,7 @@ page PasswordInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/password-requirement-list.wrn b/app/pages/components/password-requirement-list.wrn index ccb95d3e..51c72406 100644 --- a/app/pages/components/password-requirement-list.wrn +++ b/app/pages/components/password-requirement-list.wrn @@ -10,10 +10,10 @@ page PasswordRequirementListcomponent {
W WRNexusJS - +
-
data component

PasswordRequirementList

Reusable password requirement list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PasswordRequirementList
+      
data component

PasswordRequirementList

Reusable password requirement list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PasswordRequirementList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page PasswordRequirementListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/password-strength-meter.wrn b/app/pages/components/password-strength-meter.wrn index 4133bb1a..37dd69ef 100644 --- a/app/pages/components/password-strength-meter.wrn +++ b/app/pages/components/password-strength-meter.wrn @@ -10,10 +10,10 @@ page PasswordStrengthMetercomponent {
W WRNexusJS - +
-
visualization component

PasswordStrengthMeter

Reusable password strength meter component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PasswordStrengthMeter
+      
visualization component

PasswordStrengthMeter

Reusable password strength meter component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PasswordStrengthMeter
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page PasswordStrengthMetercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/password-visibility-toggle.wrn b/app/pages/components/password-visibility-toggle.wrn index 8914ae8c..1c4a81a8 100644 --- a/app/pages/components/password-visibility-toggle.wrn +++ b/app/pages/components/password-visibility-toggle.wrn @@ -10,10 +10,10 @@ page PasswordVisibilityTogglecomponent {
W WRNexusJS - +
-
forms component

PasswordVisibilityToggle

Reusable password visibility toggle component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PasswordVisibilityToggle
+      
forms component

PasswordVisibilityToggle

Reusable password visibility toggle component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PasswordVisibilityToggle
   label="PasswordVisibility"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page PasswordVisibilityTogglecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/path-input.wrn b/app/pages/components/path-input.wrn index 8069f878..91c3653b 100644 --- a/app/pages/components/path-input.wrn +++ b/app/pages/components/path-input.wrn @@ -10,10 +10,10 @@ page PathInputcomponent {
W WRNexusJS - +
-
forms component

PathInput

Reusable path input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PathInput
+      
forms component

PathInput

Reusable path input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PathInput
   label="Path"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page PathInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/payment-method-card.wrn b/app/pages/components/payment-method-card.wrn index 82355170..c9b76d67 100644 --- a/app/pages/components/payment-method-card.wrn +++ b/app/pages/components/payment-method-card.wrn @@ -10,10 +10,10 @@ page PaymentMethodCardcomponent {
W WRNexusJS - +
-
content component

PaymentMethodCard

Reusable payment method card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PaymentMethodCard
+      
content component

PaymentMethodCard

Reusable payment method card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PaymentMethodCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page PaymentMethodCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/pdf-preview.wrn b/app/pages/components/pdf-preview.wrn index a60bcc57..13e989d2 100644 --- a/app/pages/components/pdf-preview.wrn +++ b/app/pages/components/pdf-preview.wrn @@ -10,10 +10,10 @@ page PdfPreviewcomponent {
W WRNexusJS - +
-
content component

PdfPreview

Reusable pdf preview component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PdfPreview
+      
content component

PdfPreview

Reusable pdf preview component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PdfPreview
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page PdfPreviewcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/percentage-input.wrn b/app/pages/components/percentage-input.wrn index 7a296c29..9408aeb6 100644 --- a/app/pages/components/percentage-input.wrn +++ b/app/pages/components/percentage-input.wrn @@ -10,10 +10,10 @@ page PercentageInputcomponent {
W WRNexusJS - +
-
forms component

PercentageInput

Reusable percentage input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PercentageInput
+      
forms component

PercentageInput

Reusable percentage input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PercentageInput
   label="Percentage"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page PercentageInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/permission-selector.wrn b/app/pages/components/permission-selector.wrn index af3e5541..6ebd5916 100644 --- a/app/pages/components/permission-selector.wrn +++ b/app/pages/components/permission-selector.wrn @@ -10,10 +10,10 @@ page PermissionSelectorcomponent {
W WRNexusJS - +
-
forms component

PermissionSelector

Reusable permission selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PermissionSelector
+      
forms component

PermissionSelector

Reusable permission selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PermissionSelector
   label="Permission"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page PermissionSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/phone-input.wrn b/app/pages/components/phone-input.wrn index 492191a6..9826f8e0 100644 --- a/app/pages/components/phone-input.wrn +++ b/app/pages/components/phone-input.wrn @@ -10,10 +10,10 @@ page PhoneInputcomponent {
W WRNexusJS - +
-
forms component

PhoneInput

Reusable phone input component.

@wrnexus/ui 0.2.6812 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PhoneInput
+      
forms component

PhoneInput

Reusable phone input component.

@wrnexus/ui 0.2.6912 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PhoneInput
   id="id"
   name="name"
   label="Phone"
@@ -45,7 +45,7 @@ page PhoneInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/pie-chart.wrn b/app/pages/components/pie-chart.wrn index 1572b085..4b31f781 100644 --- a/app/pages/components/pie-chart.wrn +++ b/app/pages/components/pie-chart.wrn @@ -10,10 +10,10 @@ page PieChartcomponent {
W WRNexusJS - +
-
visualization component

PieChart

Reusable pie chart component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PieChart
+      
visualization component

PieChart

Reusable pie chart component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PieChart
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page PieChartcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/pill.wrn b/app/pages/components/pill.wrn index f494f62d..1a42e9a3 100644 --- a/app/pages/components/pill.wrn +++ b/app/pages/components/pill.wrn @@ -10,10 +10,10 @@ page Pillcomponent {
W WRNexusJS - +
-
core component

Pill

Reusable pill component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Pill
+      
core component

Pill

Reusable pill component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Pill
   label="Pill"
   variant="default"
 />

Legacy mount name: data-component="Pill".

Props and attributes

PropTypeRequirementDefault
labelstringOptional"Pill"
variantstringOptional"default"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Pill.wrn

component Pill {
@@ -28,7 +28,7 @@ page Pillcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/pin-input.wrn b/app/pages/components/pin-input.wrn index db42f2e9..185669f4 100644 --- a/app/pages/components/pin-input.wrn +++ b/app/pages/components/pin-input.wrn @@ -10,10 +10,10 @@ page PinInputcomponent {
W WRNexusJS - +
-
forms component

PinInput

Reusable pin input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PinInput
+      
forms component

PinInput

Reusable pin input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PinInput
   label="Pin"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page PinInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/plain-text-editor.wrn b/app/pages/components/plain-text-editor.wrn index 12c838fe..399e66b1 100644 --- a/app/pages/components/plain-text-editor.wrn +++ b/app/pages/components/plain-text-editor.wrn @@ -10,10 +10,10 @@ page PlainTextEditorcomponent {
W WRNexusJS - +
-
forms component

PlainTextEditor

Reusable plain text editor component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PlainTextEditor
+      
forms component

PlainTextEditor

Reusable plain text editor component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PlainTextEditor
   label="PlainText"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page PlainTextEditorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/plan-cta.wrn b/app/pages/components/plan-cta.wrn index 05e08435..2ab63d9e 100644 --- a/app/pages/components/plan-cta.wrn +++ b/app/pages/components/plan-cta.wrn @@ -10,10 +10,10 @@ page PlanCTAcomponent {
W WRNexusJS - +
-
actions component

PlanCTA

Reusable plan c t a component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PlanCTA
+      
actions component

PlanCTA

Reusable plan c t a component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PlanCTA
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page PlanCTAcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/plan-feature-list.wrn b/app/pages/components/plan-feature-list.wrn index cb034ef1..bcd2543f 100644 --- a/app/pages/components/plan-feature-list.wrn +++ b/app/pages/components/plan-feature-list.wrn @@ -10,10 +10,10 @@ page PlanFeatureListcomponent {
W WRNexusJS - +
-
data component

PlanFeatureList

Reusable plan feature list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PlanFeatureList
+      
data component

PlanFeatureList

Reusable plan feature list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PlanFeatureList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page PlanFeatureListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/plan-limit-list.wrn b/app/pages/components/plan-limit-list.wrn index 4dfad4ce..ff9a5e3c 100644 --- a/app/pages/components/plan-limit-list.wrn +++ b/app/pages/components/plan-limit-list.wrn @@ -10,10 +10,10 @@ page PlanLimitListcomponent {
W WRNexusJS - +
-
data component

PlanLimitList

Reusable plan limit list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PlanLimitList
+      
data component

PlanLimitList

Reusable plan limit list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PlanLimitList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page PlanLimitListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/plan-selector.wrn b/app/pages/components/plan-selector.wrn index d86dc39d..a8ffdce6 100644 --- a/app/pages/components/plan-selector.wrn +++ b/app/pages/components/plan-selector.wrn @@ -10,10 +10,10 @@ page PlanSelectorcomponent {
W WRNexusJS - +
-
forms component

PlanSelector

Reusable plan selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PlanSelector
+      
forms component

PlanSelector

Reusable plan selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PlanSelector
   label="Plan"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page PlanSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/platform-pillar-card.wrn b/app/pages/components/platform-pillar-card.wrn index 7ef44a2d..3f6abb78 100644 --- a/app/pages/components/platform-pillar-card.wrn +++ b/app/pages/components/platform-pillar-card.wrn @@ -10,10 +10,10 @@ page PlatformPillarCardcomponent {
W WRNexusJS - +
-
content component

PlatformPillarCard

Reusable platform pillar card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PlatformPillarCard
+      
content component

PlatformPillarCard

Reusable platform pillar card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PlatformPillarCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page PlatformPillarCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/policy-version-table.wrn b/app/pages/components/policy-version-table.wrn index c81c76fc..451acf9d 100644 --- a/app/pages/components/policy-version-table.wrn +++ b/app/pages/components/policy-version-table.wrn @@ -10,10 +10,10 @@ page PolicyVersionTablecomponent {
W WRNexusJS - +
-
data component

PolicyVersionTable

Reusable policy version table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PolicyVersionTable
+      
data component

PolicyVersionTable

Reusable policy version table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PolicyVersionTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page PolicyVersionTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/popover.wrn b/app/pages/components/popover.wrn index 74bf5939..3f69a501 100644 --- a/app/pages/components/popover.wrn +++ b/app/pages/components/popover.wrn @@ -10,10 +10,10 @@ page Popovercomponent {
W WRNexusJS - +
-
overlays component

Popover

Reusable popover component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Popover
+      
overlays component

Popover

Reusable popover component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Popover
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page Popovercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/port-input.wrn b/app/pages/components/port-input.wrn index 015f7c87..d9ecf21b 100644 --- a/app/pages/components/port-input.wrn +++ b/app/pages/components/port-input.wrn @@ -10,10 +10,10 @@ page PortInputcomponent {
W WRNexusJS - +
-
forms component

PortInput

Reusable port input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PortInput
+      
forms component

PortInput

Reusable port input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PortInput
   label="Port"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page PortInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/port-number-input.wrn b/app/pages/components/port-number-input.wrn index dab8f4bb..fcb77485 100644 --- a/app/pages/components/port-number-input.wrn +++ b/app/pages/components/port-number-input.wrn @@ -10,10 +10,10 @@ page PortNumberInputcomponent {
W WRNexusJS - +
-
forms component

PortNumberInput

Reusable port number input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PortNumberInput
+      
forms component

PortNumberInput

Reusable port number input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PortNumberInput
   label="PortNumber"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page PortNumberInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/positive-number-input.wrn b/app/pages/components/positive-number-input.wrn index 6a4b6be0..922dc7b0 100644 --- a/app/pages/components/positive-number-input.wrn +++ b/app/pages/components/positive-number-input.wrn @@ -10,10 +10,10 @@ page PositiveNumberInputcomponent {
W WRNexusJS - +
-
forms component

PositiveNumberInput

Reusable positive number input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PositiveNumberInput
+      
forms component

PositiveNumberInput

Reusable positive number input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PositiveNumberInput
   label="PositiveNumber"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page PositiveNumberInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/postal-code-input.wrn b/app/pages/components/postal-code-input.wrn index 3e4e7122..f67cc1bc 100644 --- a/app/pages/components/postal-code-input.wrn +++ b/app/pages/components/postal-code-input.wrn @@ -10,10 +10,10 @@ page PostalCodeInputcomponent {
W WRNexusJS - +
-
forms component

PostalCodeInput

Reusable postal code input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PostalCodeInput
+      
forms component

PostalCodeInput

Reusable postal code input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PostalCodeInput
   label="PostalCode"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page PostalCodeInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/postman-cta.wrn b/app/pages/components/postman-cta.wrn index 2675a64f..3bc1439b 100644 --- a/app/pages/components/postman-cta.wrn +++ b/app/pages/components/postman-cta.wrn @@ -10,10 +10,10 @@ page PostmanCTAcomponent {
W WRNexusJS - +
-
actions component

PostmanCTA

Reusable postman c t a component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PostmanCTA
+      
actions component

PostmanCTA

Reusable postman c t a component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PostmanCTA
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page PostmanCTAcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/preset-date-range-picker.wrn b/app/pages/components/preset-date-range-picker.wrn index bf6afaca..80f5a4c1 100644 --- a/app/pages/components/preset-date-range-picker.wrn +++ b/app/pages/components/preset-date-range-picker.wrn @@ -10,10 +10,10 @@ page PresetDateRangePickercomponent {
W WRNexusJS - +
-
forms component

PresetDateRangePicker

Reusable preset date range picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PresetDateRangePicker
+      
forms component

PresetDateRangePicker

Reusable preset date range picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PresetDateRangePicker
   label="PresetDateRange"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page PresetDateRangePickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/press-release-card.wrn b/app/pages/components/press-release-card.wrn index c5f60e74..b7c4c5d5 100644 --- a/app/pages/components/press-release-card.wrn +++ b/app/pages/components/press-release-card.wrn @@ -10,10 +10,10 @@ page PressReleaseCardcomponent {
W WRNexusJS - +
-
content component

PressReleaseCard

Reusable press release card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PressReleaseCard
+      
content component

PressReleaseCard

Reusable press release card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PressReleaseCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page PressReleaseCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/preview-badge.wrn b/app/pages/components/preview-badge.wrn index fa1e8b04..2850ecfc 100644 --- a/app/pages/components/preview-badge.wrn +++ b/app/pages/components/preview-badge.wrn @@ -10,10 +10,10 @@ page PreviewBadgecomponent {
W WRNexusJS - +
-
feedback component

PreviewBadge

Reusable preview badge component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PreviewBadge
+      
feedback component

PreviewBadge

Reusable preview badge component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PreviewBadge
   label="Preview"
   variant="default"
 />

Legacy mount name: data-component="PreviewBadge".

Props and attributes

PropTypeRequirementDefault
labelstringOptional"Preview"
variantstringOptional"default"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/PreviewBadge.wrn

component PreviewBadge {
@@ -28,7 +28,7 @@ page PreviewBadgecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/previous-next-navigation.wrn b/app/pages/components/previous-next-navigation.wrn index b8ffc69b..9ca6b85e 100644 --- a/app/pages/components/previous-next-navigation.wrn +++ b/app/pages/components/previous-next-navigation.wrn @@ -10,10 +10,10 @@ page PreviousNextNavigationcomponent {
W WRNexusJS - +
-
layout component

PreviousNextNavigation

Reusable previous next navigation component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PreviousNextNavigation
+      
layout component

PreviousNextNavigation

Reusable previous next navigation component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PreviousNextNavigation
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page PreviousNextNavigationcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/price-input.wrn b/app/pages/components/price-input.wrn index dd01521a..f1b36d33 100644 --- a/app/pages/components/price-input.wrn +++ b/app/pages/components/price-input.wrn @@ -10,10 +10,10 @@ page PriceInputcomponent {
W WRNexusJS - +
-
forms component

PriceInput

Reusable price input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PriceInput
+      
forms component

PriceInput

Reusable price input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PriceInput
   label="Price"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page PriceInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/price-range-slider.wrn b/app/pages/components/price-range-slider.wrn index 5859be64..39e03391 100644 --- a/app/pages/components/price-range-slider.wrn +++ b/app/pages/components/price-range-slider.wrn @@ -10,10 +10,10 @@ page PriceRangeSlidercomponent {
W WRNexusJS - +
-
content component

PriceRangeSlider

Reusable price range slider component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PriceRangeSlider
+      
content component

PriceRangeSlider

Reusable price range slider component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PriceRangeSlider
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page PriceRangeSlidercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/price-text.wrn b/app/pages/components/price-text.wrn index 862f23db..9a8c062d 100644 --- a/app/pages/components/price-text.wrn +++ b/app/pages/components/price-text.wrn @@ -10,10 +10,10 @@ page PriceTextcomponent {
W WRNexusJS - +
-
content component

PriceText

Reusable price text component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PriceText
+      
content component

PriceText

Reusable price text component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PriceText
   text="text"
   align="start"
 />

Legacy mount name: data-component="PriceText".

Props and attributes

PropTypeRequirementDefault
textstringOptional""
alignstringOptional"start"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/PriceText.wrn

component PriceText {
@@ -28,7 +28,7 @@ page PriceTextcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/pricing-card.wrn b/app/pages/components/pricing-card.wrn index 28e979d8..d897de51 100644 --- a/app/pages/components/pricing-card.wrn +++ b/app/pages/components/pricing-card.wrn @@ -10,10 +10,10 @@ page PricingCardcomponent {
W WRNexusJS - +
-
content component

PricingCard

Reusable pricing card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PricingCard
+      
content component

PricingCard

Reusable pricing card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PricingCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page PricingCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/pricing-comparison-table.wrn b/app/pages/components/pricing-comparison-table.wrn index 5435534b..1172e8e2 100644 --- a/app/pages/components/pricing-comparison-table.wrn +++ b/app/pages/components/pricing-comparison-table.wrn @@ -10,10 +10,10 @@ page PricingComparisonTablecomponent {
W WRNexusJS - +
-
data component

PricingComparisonTable

Reusable pricing comparison table component.

@wrnexus/ui 0.2.684 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PricingComparisonTable
+      
data component

PricingComparisonTable

Reusable pricing comparison table component.

@wrnexus/ui 0.2.694 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PricingComparisonTable
   caption="Plan comparison"
   plans="[]"
   features="[]"
@@ -39,7 +39,7 @@ page PricingComparisonTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/pricing-contact-form.wrn b/app/pages/components/pricing-contact-form.wrn index b07c3652..c79a281f 100644 --- a/app/pages/components/pricing-contact-form.wrn +++ b/app/pages/components/pricing-contact-form.wrn @@ -10,10 +10,10 @@ page PricingContactFormcomponent {
W WRNexusJS - +
-
content component

PricingContactForm

Reusable pricing contact form component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PricingContactForm
+      
content component

PricingContactForm

Reusable pricing contact form component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PricingContactForm
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page PricingContactFormcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/pricing-feature-group.wrn b/app/pages/components/pricing-feature-group.wrn index 92bbcbed..219a6a40 100644 --- a/app/pages/components/pricing-feature-group.wrn +++ b/app/pages/components/pricing-feature-group.wrn @@ -10,10 +10,10 @@ page PricingFeatureGroupcomponent {
W WRNexusJS - +
-
forms component

PricingFeatureGroup

Reusable pricing feature group component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PricingFeatureGroup
+      
forms component

PricingFeatureGroup

Reusable pricing feature group component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PricingFeatureGroup
   label="PricingFeature"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page PricingFeatureGroupcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/pricing-grid.wrn b/app/pages/components/pricing-grid.wrn index 6eb0f6b0..5c3c85c4 100644 --- a/app/pages/components/pricing-grid.wrn +++ b/app/pages/components/pricing-grid.wrn @@ -10,10 +10,10 @@ page PricingGridcomponent {
W WRNexusJS - +
-
data component

PricingGrid

Reusable pricing grid component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PricingGrid
+      
data component

PricingGrid

Reusable pricing grid component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PricingGrid
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page PricingGridcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/pricing-hero.wrn b/app/pages/components/pricing-hero.wrn index cf7864e4..b4e0eb92 100644 --- a/app/pages/components/pricing-hero.wrn +++ b/app/pages/components/pricing-hero.wrn @@ -10,10 +10,10 @@ page PricingHerocomponent {
W WRNexusJS - +
-
layout component

PricingHero

Reusable pricing hero component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PricingHero
+      
layout component

PricingHero

Reusable pricing hero component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PricingHero
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page PricingHerocomponent {
     }
 }
 
- + } diff --git a/app/pages/components/pricing-plan-card.wrn b/app/pages/components/pricing-plan-card.wrn index 3abab105..62d24854 100644 --- a/app/pages/components/pricing-plan-card.wrn +++ b/app/pages/components/pricing-plan-card.wrn @@ -10,10 +10,10 @@ page PricingPlanCardcomponent {
W WRNexusJS - +
-
content component

PricingPlanCard

Reusable pricing plan card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PricingPlanCard
+      
content component

PricingPlanCard

Reusable pricing plan card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PricingPlanCard
   name="Starter"
   description="description"
   price="₹0"
@@ -47,7 +47,7 @@ page PricingPlanCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/pricing-table.wrn b/app/pages/components/pricing-table.wrn index b288a6f3..037dd738 100644 --- a/app/pages/components/pricing-table.wrn +++ b/app/pages/components/pricing-table.wrn @@ -10,10 +10,10 @@ page PricingTablecomponent {
W WRNexusJS - +
-
data component

PricingTable

Reusable pricing table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PricingTable
+      
data component

PricingTable

Reusable pricing table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PricingTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page PricingTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/pricing-toggle.wrn b/app/pages/components/pricing-toggle.wrn index e63700a8..d015685a 100644 --- a/app/pages/components/pricing-toggle.wrn +++ b/app/pages/components/pricing-toggle.wrn @@ -10,10 +10,10 @@ page PricingTogglecomponent {
W WRNexusJS - +
-
forms component

PricingToggle

Reusable pricing toggle component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PricingToggle
+      
forms component

PricingToggle

Reusable pricing toggle component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PricingToggle
   label="Pricing"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page PricingTogglecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/primary-button.wrn b/app/pages/components/primary-button.wrn index cb435f0f..18210fb8 100644 --- a/app/pages/components/primary-button.wrn +++ b/app/pages/components/primary-button.wrn @@ -10,10 +10,10 @@ page PrimaryButtoncomponent {
W WRNexusJS - +
-
actions component

PrimaryButton

Reusable primary button component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PrimaryButton
+      
actions component

PrimaryButton

Reusable primary button component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PrimaryButton
   label="Action"
   type="button"
   disabled="false"
@@ -30,7 +30,7 @@ page PrimaryButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/print-action.wrn b/app/pages/components/print-action.wrn index f8bf45d1..d816c3e4 100644 --- a/app/pages/components/print-action.wrn +++ b/app/pages/components/print-action.wrn @@ -10,10 +10,10 @@ page PrintActioncomponent {
W WRNexusJS - +
-
actions component

PrintAction

Reusable print action component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PrintAction
+      
actions component

PrintAction

Reusable print action component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PrintAction
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page PrintActioncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/print-policy-button.wrn b/app/pages/components/print-policy-button.wrn index 2a4ef278..990782a4 100644 --- a/app/pages/components/print-policy-button.wrn +++ b/app/pages/components/print-policy-button.wrn @@ -10,10 +10,10 @@ page PrintPolicyButtoncomponent {
W WRNexusJS - +
-
actions component

PrintPolicyButton

Reusable print policy button component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PrintPolicyButton
+      
actions component

PrintPolicyButton

Reusable print policy button component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PrintPolicyButton
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page PrintPolicyButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/priority-selector.wrn b/app/pages/components/priority-selector.wrn index 72d6e219..368a08cc 100644 --- a/app/pages/components/priority-selector.wrn +++ b/app/pages/components/priority-selector.wrn @@ -10,10 +10,10 @@ page PrioritySelectorcomponent {
W WRNexusJS - +
-
forms component

PrioritySelector

Reusable priority selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PrioritySelector
+      
forms component

PrioritySelector

Reusable priority selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PrioritySelector
   label="Priority"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page PrioritySelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/privacy-notice.wrn b/app/pages/components/privacy-notice.wrn index 8817b402..ba1771fa 100644 --- a/app/pages/components/privacy-notice.wrn +++ b/app/pages/components/privacy-notice.wrn @@ -10,10 +10,10 @@ page PrivacyNoticecomponent {
W WRNexusJS - +
-
feedback component

PrivacyNotice

Reusable privacy notice component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PrivacyNotice
+      
feedback component

PrivacyNotice

Reusable privacy notice component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PrivacyNotice
   label="Privacy"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page PrivacyNoticecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/product-architecture-diagram.wrn b/app/pages/components/product-architecture-diagram.wrn index b275e88b..9a29bf56 100644 --- a/app/pages/components/product-architecture-diagram.wrn +++ b/app/pages/components/product-architecture-diagram.wrn @@ -10,10 +10,10 @@ page ProductArchitectureDiagramcomponent {
W WRNexusJS - +
-
visualization component

ProductArchitectureDiagram

Reusable product architecture diagram component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductArchitectureDiagram
+      
visualization component

ProductArchitectureDiagram

Reusable product architecture diagram component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductArchitectureDiagram
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page ProductArchitectureDiagramcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/product-card.wrn b/app/pages/components/product-card.wrn index c254ef4b..afa83262 100644 --- a/app/pages/components/product-card.wrn +++ b/app/pages/components/product-card.wrn @@ -10,10 +10,10 @@ page ProductCardcomponent {
W WRNexusJS - +
-
content component

ProductCard

Reusable product card component.

@wrnexus/ui 0.2.687 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductCard
+      
content component

ProductCard

Reusable product card component.

@wrnexus/ui 0.2.697 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductCard
   eyebrow="Product"
   title="Product name"
   description="description"
@@ -43,7 +43,7 @@ page ProductCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/product-category-section.wrn b/app/pages/components/product-category-section.wrn index f405794f..c44a2f9c 100644 --- a/app/pages/components/product-category-section.wrn +++ b/app/pages/components/product-category-section.wrn @@ -10,10 +10,10 @@ page ProductCategorySectioncomponent {
W WRNexusJS - +
-
layout component

ProductCategorySection

Reusable product category section component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductCategorySection
+      
layout component

ProductCategorySection

Reusable product category section component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductCategorySection
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ProductCategorySectioncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/product-cta.wrn b/app/pages/components/product-cta.wrn index 7456ef08..a4774667 100644 --- a/app/pages/components/product-cta.wrn +++ b/app/pages/components/product-cta.wrn @@ -10,10 +10,10 @@ page ProductCTAcomponent {
W WRNexusJS - +
-
actions component

ProductCTA

Reusable product c t a component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductCTA
+      
actions component

ProductCTA

Reusable product c t a component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductCTA
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page ProductCTAcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/product-feature-list.wrn b/app/pages/components/product-feature-list.wrn index cc12783f..c9eef885 100644 --- a/app/pages/components/product-feature-list.wrn +++ b/app/pages/components/product-feature-list.wrn @@ -10,10 +10,10 @@ page ProductFeatureListcomponent {
W WRNexusJS - +
-
data component

ProductFeatureList

Reusable product feature list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductFeatureList
+      
data component

ProductFeatureList

Reusable product feature list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductFeatureList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page ProductFeatureListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/product-grid.wrn b/app/pages/components/product-grid.wrn index 17e49c0f..0d3c58ae 100644 --- a/app/pages/components/product-grid.wrn +++ b/app/pages/components/product-grid.wrn @@ -10,10 +10,10 @@ page ProductGridcomponent {
W WRNexusJS - +
-
data component

ProductGrid

Reusable product grid component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductGrid
+      
data component

ProductGrid

Reusable product grid component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductGrid
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page ProductGridcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/product-hero.wrn b/app/pages/components/product-hero.wrn index 9a782f10..21e18e39 100644 --- a/app/pages/components/product-hero.wrn +++ b/app/pages/components/product-hero.wrn @@ -10,10 +10,10 @@ page ProductHerocomponent {
W WRNexusJS - +
-
layout component

ProductHero

Reusable product hero component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductHero
+      
layout component

ProductHero

Reusable product hero component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductHero
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ProductHerocomponent {
     }
 }
 
- + } diff --git a/app/pages/components/product-icon.wrn b/app/pages/components/product-icon.wrn index 3ca1adf3..605e246c 100644 --- a/app/pages/components/product-icon.wrn +++ b/app/pages/components/product-icon.wrn @@ -10,10 +10,10 @@ page ProductIconcomponent {
W WRNexusJS - +
-
content component

ProductIcon

Reusable product icon component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductIcon
+      
content component

ProductIcon

Reusable product icon component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductIcon
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ProductIconcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/product-integration-list.wrn b/app/pages/components/product-integration-list.wrn index 2ba6d9ae..118aa469 100644 --- a/app/pages/components/product-integration-list.wrn +++ b/app/pages/components/product-integration-list.wrn @@ -10,10 +10,10 @@ page ProductIntegrationListcomponent {
W WRNexusJS - +
-
data component

ProductIntegrationList

Reusable product integration list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductIntegrationList
+      
data component

ProductIntegrationList

Reusable product integration list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductIntegrationList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page ProductIntegrationListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/product-list.wrn b/app/pages/components/product-list.wrn index 01b351d0..597ce8d5 100644 --- a/app/pages/components/product-list.wrn +++ b/app/pages/components/product-list.wrn @@ -10,10 +10,10 @@ page ProductListcomponent {
W WRNexusJS - +
-
data component

ProductList

Reusable product list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductList
+      
data component

ProductList

Reusable product list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page ProductListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/product-logo.wrn b/app/pages/components/product-logo.wrn index 70ce571d..1c313263 100644 --- a/app/pages/components/product-logo.wrn +++ b/app/pages/components/product-logo.wrn @@ -10,10 +10,10 @@ page ProductLogocomponent {
W WRNexusJS - +
-
content component

ProductLogo

Reusable product logo component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductLogo
+      
content component

ProductLogo

Reusable product logo component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductLogo
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ProductLogocomponent {
     }
 }
 
- + } diff --git a/app/pages/components/product-mega-menu.wrn b/app/pages/components/product-mega-menu.wrn index 07b9409d..5e4a643b 100644 --- a/app/pages/components/product-mega-menu.wrn +++ b/app/pages/components/product-mega-menu.wrn @@ -10,10 +10,10 @@ page ProductMegaMenucomponent {
W WRNexusJS - +
-
core component

ProductMegaMenu

Reusable product mega menu component.

@wrnexus/ui 0.2.681 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductMegaMenu />

Legacy mount name: data-component="ProductMegaMenu".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

This component does not declare a slot.

Events

This component does not declare a custom event.

Source contract

Installed source: components/ProductMegaMenu.wrn

component ProductMegaMenu {
+      
core component

ProductMegaMenu

Reusable product mega menu component.

@wrnexus/ui 0.2.691 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductMegaMenu />

Legacy mount name: data-component="ProductMegaMenu".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

This component does not declare a slot.

Events

This component does not declare a custom event.

Source contract

Installed source: components/ProductMegaMenu.wrn

component ProductMegaMenu {
     props {
         class: string = ""
     }
@@ -328,7 +328,7 @@ page ProductMegaMenucomponent {
     }
 }
 
- + } diff --git a/app/pages/components/product-mini-card.wrn b/app/pages/components/product-mini-card.wrn index 1ddac66c..d8a89753 100644 --- a/app/pages/components/product-mini-card.wrn +++ b/app/pages/components/product-mini-card.wrn @@ -10,10 +10,10 @@ page ProductMiniCardcomponent {
W WRNexusJS - +
-
content component

ProductMiniCard

Reusable product mini card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductMiniCard
+      
content component

ProductMiniCard

Reusable product mini card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductMiniCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ProductMiniCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/product-navigation-card.wrn b/app/pages/components/product-navigation-card.wrn index 954017ff..8d238f0b 100644 --- a/app/pages/components/product-navigation-card.wrn +++ b/app/pages/components/product-navigation-card.wrn @@ -10,10 +10,10 @@ page ProductNavigationCardcomponent {
W WRNexusJS - +
-
content component

ProductNavigationCard

Reusable product navigation card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductNavigationCard
+      
content component

ProductNavigationCard

Reusable product navigation card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductNavigationCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ProductNavigationCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/product-page-shell.wrn b/app/pages/components/product-page-shell.wrn index 6e2085bc..93dce84d 100644 --- a/app/pages/components/product-page-shell.wrn +++ b/app/pages/components/product-page-shell.wrn @@ -10,10 +10,10 @@ page ProductPageShellcomponent {
W WRNexusJS - +
-
layout component

ProductPageShell

Reusable product page shell component.

@wrnexus/ui 0.2.681 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductPageShell />

Legacy mount name: data-component="ProductPageShell".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/ProductPageShell.wrn

component ProductPageShell {
+      
layout component

ProductPageShell

Reusable product page shell component.

@wrnexus/ui 0.2.691 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductPageShell />

Legacy mount name: data-component="ProductPageShell".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/ProductPageShell.wrn

component ProductPageShell {
   props {
     class = ""
   }
@@ -24,7 +24,7 @@ page ProductPageShellcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/product-selector.wrn b/app/pages/components/product-selector.wrn index 9db656f3..c12fe037 100644 --- a/app/pages/components/product-selector.wrn +++ b/app/pages/components/product-selector.wrn @@ -10,10 +10,10 @@ page ProductSelectorcomponent {
W WRNexusJS - +
-
forms component

ProductSelector

Reusable product selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductSelector
+      
forms component

ProductSelector

Reusable product selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductSelector
   label="Product"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page ProductSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/product-status-badge.wrn b/app/pages/components/product-status-badge.wrn index e3643878..95a01521 100644 --- a/app/pages/components/product-status-badge.wrn +++ b/app/pages/components/product-status-badge.wrn @@ -10,10 +10,10 @@ page ProductStatusBadgecomponent {
W WRNexusJS - +
-
feedback component

ProductStatusBadge

Reusable product status badge component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductStatusBadge
+      
feedback component

ProductStatusBadge

Reusable product status badge component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductStatusBadge
   label="ProductStatus"
   variant="default"
 />

Legacy mount name: data-component="ProductStatusBadge".

Props and attributes

PropTypeRequirementDefault
labelstringOptional"ProductStatus"
variantstringOptional"default"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/ProductStatusBadge.wrn

component ProductStatusBadge {
@@ -28,7 +28,7 @@ page ProductStatusBadgecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/product-use-case-list.wrn b/app/pages/components/product-use-case-list.wrn index e914a04b..74d85cfb 100644 --- a/app/pages/components/product-use-case-list.wrn +++ b/app/pages/components/product-use-case-list.wrn @@ -10,10 +10,10 @@ page ProductUseCaseListcomponent {
W WRNexusJS - +
-
data component

ProductUseCaseList

Reusable product use case list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductUseCaseList
+      
data component

ProductUseCaseList

Reusable product use case list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductUseCaseList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page ProductUseCaseListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/products-mega-menu.wrn b/app/pages/components/products-mega-menu.wrn index d0808365..65d1d549 100644 --- a/app/pages/components/products-mega-menu.wrn +++ b/app/pages/components/products-mega-menu.wrn @@ -10,10 +10,10 @@ page ProductsMegaMenucomponent {
W WRNexusJS - +
-
overlays component

ProductsMegaMenu

Reusable products mega menu component.

@wrnexus/ui 0.2.683 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductsMegaMenu
+      
overlays component

ProductsMegaMenu

Reusable products mega menu component.

@wrnexus/ui 0.2.693 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProductsMegaMenu
   label="Products"
   sections="[]"
 />

Legacy mount name: data-component="ProductsMegaMenu".

Props and attributes

PropTypeRequirementDefault
labelstringOptional"Products"
sectionsstringOptional[]
classstringOptional""

Slots

This component does not declare a slot.

Events

This component does not declare a custom event.

Source contract

Installed source: components/ProductsMegaMenu.wrn

component ProductsMegaMenu {
@@ -27,7 +27,7 @@ page ProductsMegaMenucomponent {
     }
 }
 
- + } diff --git a/app/pages/components/progress-bar.wrn b/app/pages/components/progress-bar.wrn index 9d165ccd..1b968772 100644 --- a/app/pages/components/progress-bar.wrn +++ b/app/pages/components/progress-bar.wrn @@ -10,10 +10,10 @@ page ProgressBarcomponent {
W WRNexusJS - +
-
core component

ProgressBar

Reusable progress bar component.

@wrnexus/ui 0.2.685 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProgressBar
+      
core component

ProgressBar

Reusable progress bar component.

@wrnexus/ui 0.2.695 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProgressBar
   value="0"
   max="100"
   label="Progress"
@@ -40,7 +40,7 @@ page ProgressBarcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/progress-chart.wrn b/app/pages/components/progress-chart.wrn index cd4ec0f6..c4484e13 100644 --- a/app/pages/components/progress-chart.wrn +++ b/app/pages/components/progress-chart.wrn @@ -10,10 +10,10 @@ page ProgressChartcomponent {
W WRNexusJS - +
-
visualization component

ProgressChart

Reusable progress chart component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProgressChart
+      
visualization component

ProgressChart

Reusable progress chart component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProgressChart
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page ProgressChartcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/progress-ring.wrn b/app/pages/components/progress-ring.wrn index 431b5e50..43cef005 100644 --- a/app/pages/components/progress-ring.wrn +++ b/app/pages/components/progress-ring.wrn @@ -10,10 +10,10 @@ page ProgressRingcomponent {
W WRNexusJS - +
-
visualization component

ProgressRing

Reusable progress ring component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProgressRing
+      
visualization component

ProgressRing

Reusable progress ring component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProgressRing
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page ProgressRingcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/progress-slider.wrn b/app/pages/components/progress-slider.wrn index 5ed5c72f..7ebf7a66 100644 --- a/app/pages/components/progress-slider.wrn +++ b/app/pages/components/progress-slider.wrn @@ -10,10 +10,10 @@ page ProgressSlidercomponent {
W WRNexusJS - +
-
content component

ProgressSlider

Reusable progress slider component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProgressSlider
+      
content component

ProgressSlider

Reusable progress slider component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProgressSlider
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ProgressSlidercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/progress.wrn b/app/pages/components/progress.wrn index b2cbe3e4..89a4eb4a 100644 --- a/app/pages/components/progress.wrn +++ b/app/pages/components/progress.wrn @@ -10,10 +10,10 @@ page progresscomponent {
W WRNexusJS - +
-
core component

progress

Reusable progress component.

@wrnexus/ui 0.2.683 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<progress
+      
core component

progress

Reusable progress component.

@wrnexus/ui 0.2.693 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<progress
   value="0"
   max="100"
 />

Legacy mount name: data-component="progress".

Props and attributes

PropTypeRequirementDefault
valuenumberOptional0
maxnumberOptional100
classstringOptional""

Slots

This component does not declare a slot.

Events

This component does not declare a custom event.

Source contract

Installed source: components/progress.wrn

// Progress bar (native <progress>, themed).
@@ -29,7 +29,7 @@ component Progress {
     }
 }
 
- + } diff --git a/app/pages/components/project-card.wrn b/app/pages/components/project-card.wrn index fc986c65..31fcd4c3 100644 --- a/app/pages/components/project-card.wrn +++ b/app/pages/components/project-card.wrn @@ -10,10 +10,10 @@ page ProjectCardcomponent {
W WRNexusJS - +
-
content component

ProjectCard

Reusable project card component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProjectCard
+      
content component

ProjectCard

Reusable project card component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProjectCard
   title="title"
   description="description"
   href="href"
@@ -36,7 +36,7 @@ page ProjectCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/project-selector.wrn b/app/pages/components/project-selector.wrn index eec03475..4461e378 100644 --- a/app/pages/components/project-selector.wrn +++ b/app/pages/components/project-selector.wrn @@ -10,10 +10,10 @@ page ProjectSelectorcomponent {
W WRNexusJS - +
-
forms component

ProjectSelector

Reusable project selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProjectSelector
+      
forms component

ProjectSelector

Reusable project selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProjectSelector
   label="Project"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page ProjectSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/project-switcher.wrn b/app/pages/components/project-switcher.wrn index 4cfce62a..306f4722 100644 --- a/app/pages/components/project-switcher.wrn +++ b/app/pages/components/project-switcher.wrn @@ -10,10 +10,10 @@ page ProjectSwitchercomponent {
W WRNexusJS - +
-
content component

ProjectSwitcher

Reusable project switcher component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProjectSwitcher
+      
content component

ProjectSwitcher

Reusable project switcher component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProjectSwitcher
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ProjectSwitchercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/promo-code-input.wrn b/app/pages/components/promo-code-input.wrn index aa33788b..280c6f05 100644 --- a/app/pages/components/promo-code-input.wrn +++ b/app/pages/components/promo-code-input.wrn @@ -10,10 +10,10 @@ page PromoCodeInputcomponent {
W WRNexusJS - +
-
forms component

PromoCodeInput

Reusable promo code input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PromoCodeInput
+      
forms component

PromoCodeInput

Reusable promo code input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PromoCodeInput
   label="PromoCode"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page PromoCodeInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/prompt-dialog.wrn b/app/pages/components/prompt-dialog.wrn index 1bff7cc5..6506d8dc 100644 --- a/app/pages/components/prompt-dialog.wrn +++ b/app/pages/components/prompt-dialog.wrn @@ -10,10 +10,10 @@ page PromptDialogcomponent {
W WRNexusJS - +
-
overlays component

PromptDialog

Reusable prompt dialog component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PromptDialog
+      
overlays component

PromptDialog

Reusable prompt dialog component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PromptDialog
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page PromptDialogcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/provider-selector.wrn b/app/pages/components/provider-selector.wrn index a68414be..a47a8bb2 100644 --- a/app/pages/components/provider-selector.wrn +++ b/app/pages/components/provider-selector.wrn @@ -10,10 +10,10 @@ page ProviderSelectorcomponent {
W WRNexusJS - +
-
forms component

ProviderSelector

Reusable provider selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProviderSelector
+      
forms component

ProviderSelector

Reusable provider selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ProviderSelector
   label="Provider"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page ProviderSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/public-footer.wrn b/app/pages/components/public-footer.wrn index c423006c..a8e492ea 100644 --- a/app/pages/components/public-footer.wrn +++ b/app/pages/components/public-footer.wrn @@ -10,10 +10,10 @@ page PublicFootercomponent {
W WRNexusJS - +
-
core component

PublicFooter

Reusable public footer component.

@wrnexus/ui 0.2.681 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PublicFooter />

Legacy mount name: data-component="PublicFooter".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

This component does not declare a slot.

Events

  • submit

Source contract

Installed source: components/PublicFooter.wrn

component PublicFooter {
+      
core component

PublicFooter

Reusable public footer component.

@wrnexus/ui 0.2.691 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PublicFooter />

Legacy mount name: data-component="PublicFooter".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

This component does not declare a slot.

Events

  • submit

Source contract

Installed source: components/PublicFooter.wrn

component PublicFooter {
     props {
         class: string = ""
         homeHref: string = "/"
@@ -589,7 +589,7 @@ page PublicFootercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/public-header-logo.wrn b/app/pages/components/public-header-logo.wrn index 764b1408..d23a5f9c 100644 --- a/app/pages/components/public-header-logo.wrn +++ b/app/pages/components/public-header-logo.wrn @@ -10,10 +10,10 @@ page PublicHeaderLogocomponent {
W WRNexusJS - +
-
content component

PublicHeaderLogo

Reusable public header logo component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PublicHeaderLogo
+      
content component

PublicHeaderLogo

Reusable public header logo component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PublicHeaderLogo
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page PublicHeaderLogocomponent {
     }
 }
 
- + } diff --git a/app/pages/components/public-header.wrn b/app/pages/components/public-header.wrn index e9dfb3d0..aaf8ea2d 100644 --- a/app/pages/components/public-header.wrn +++ b/app/pages/components/public-header.wrn @@ -10,10 +10,10 @@ page PublicHeadercomponent {
W WRNexusJS - +
-
layout component

PublicHeader

Reusable public header component.

@wrnexus/ui 0.2.681 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PublicHeader />

Legacy mount name: data-component="PublicHeader".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

This component does not declare a slot.

Events

  • click

Source contract

Installed source: components/PublicHeader.wrn

component PublicHeader {
+      
layout component

PublicHeader

Reusable public header component.

@wrnexus/ui 0.2.691 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PublicHeader />

Legacy mount name: data-component="PublicHeader".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

This component does not declare a slot.

Events

  • click

Source contract

Installed source: components/PublicHeader.wrn

component PublicHeader {
     props {
         class: string = ""
         homeHref: string = "/"
@@ -312,7 +312,7 @@ page PublicHeadercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/public-mobile-navigation.wrn b/app/pages/components/public-mobile-navigation.wrn index d7c1145b..4b3f6af7 100644 --- a/app/pages/components/public-mobile-navigation.wrn +++ b/app/pages/components/public-mobile-navigation.wrn @@ -10,10 +10,10 @@ page PublicMobileNavigationcomponent {
W WRNexusJS - +
-
core component

PublicMobileNavigation

Reusable public mobile navigation component.

@wrnexus/ui 0.2.681 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PublicMobileNavigation />

Legacy mount name: data-component="PublicMobileNavigation".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

This component does not declare a slot.

Events

  • click

Source contract

Installed source: components/PublicMobileNavigation.wrn

component PublicMobileNavigation {
+      
core component

PublicMobileNavigation

Reusable public mobile navigation component.

@wrnexus/ui 0.2.691 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PublicMobileNavigation />

Legacy mount name: data-component="PublicMobileNavigation".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

This component does not declare a slot.

Events

  • click

Source contract

Installed source: components/PublicMobileNavigation.wrn

component PublicMobileNavigation {
     props {
         class: string = ""
     }
@@ -573,7 +573,7 @@ page PublicMobileNavigationcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/public-page-shell.wrn b/app/pages/components/public-page-shell.wrn index ada7a643..1ad935ee 100644 --- a/app/pages/components/public-page-shell.wrn +++ b/app/pages/components/public-page-shell.wrn @@ -10,10 +10,10 @@ page PublicPageShellcomponent {
W WRNexusJS - +
-
layout component

PublicPageShell

Reusable public page shell component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PublicPageShell
+      
layout component

PublicPageShell

Reusable public page shell component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PublicPageShell
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page PublicPageShellcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/public-search.wrn b/app/pages/components/public-search.wrn index 416e7116..637af903 100644 --- a/app/pages/components/public-search.wrn +++ b/app/pages/components/public-search.wrn @@ -10,10 +10,10 @@ page PublicSearchcomponent {
W WRNexusJS - +
-
core component

PublicSearch

Reusable public search component.

@wrnexus/ui 0.2.6815 props0 slots4 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PublicSearch
+      
core component

PublicSearch

Reusable public search component.

@wrnexus/ui 0.2.6915 props0 slots4 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PublicSearch
   query="query"
   placeholder="Search..."
   label="Search"
@@ -143,7 +143,7 @@ page PublicSearchcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/publish-date-time-picker.wrn b/app/pages/components/publish-date-time-picker.wrn index cfafbe82..f57ae209 100644 --- a/app/pages/components/publish-date-time-picker.wrn +++ b/app/pages/components/publish-date-time-picker.wrn @@ -10,10 +10,10 @@ page PublishDateTimePickercomponent {
W WRNexusJS - +
-
forms component

PublishDateTimePicker

Reusable publish date time picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PublishDateTimePicker
+      
forms component

PublishDateTimePicker

Reusable publish date time picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PublishDateTimePicker
   label="PublishDateTime"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page PublishDateTimePickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/push-composer.wrn b/app/pages/components/push-composer.wrn index 62ad5b17..bedab1c3 100644 --- a/app/pages/components/push-composer.wrn +++ b/app/pages/components/push-composer.wrn @@ -10,10 +10,10 @@ page PushComposercomponent {
W WRNexusJS - +
-
content component

PushComposer

Reusable push composer component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PushComposer
+      
content component

PushComposer

Reusable push composer component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PushComposer
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page PushComposercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/push-notification-editor.wrn b/app/pages/components/push-notification-editor.wrn index 2531aaeb..94fe0c23 100644 --- a/app/pages/components/push-notification-editor.wrn +++ b/app/pages/components/push-notification-editor.wrn @@ -10,10 +10,10 @@ page PushNotificationEditorcomponent {
W WRNexusJS - +
-
forms component

PushNotificationEditor

Reusable push notification editor component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PushNotificationEditor
+      
forms component

PushNotificationEditor

Reusable push notification editor component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<PushNotificationEditor
   label="PushNotification"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page PushNotificationEditorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/qr-code.wrn b/app/pages/components/qr-code.wrn index 9e32d950..14ce7869 100644 --- a/app/pages/components/qr-code.wrn +++ b/app/pages/components/qr-code.wrn @@ -10,10 +10,10 @@ page QrCodecomponent {
W WRNexusJS - +
-
content component

QrCode

Reusable qr code component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<QrCode
+      
content component

QrCode

Reusable qr code component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<QrCode
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page QrCodecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/quantity-input.wrn b/app/pages/components/quantity-input.wrn index e04626b6..ea07b4fc 100644 --- a/app/pages/components/quantity-input.wrn +++ b/app/pages/components/quantity-input.wrn @@ -10,10 +10,10 @@ page QuantityInputcomponent {
W WRNexusJS - +
-
forms component

QuantityInput

Reusable quantity input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<QuantityInput
+      
forms component

QuantityInput

Reusable quantity input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<QuantityInput
   label="Quantity"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page QuantityInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/quantity-stepper.wrn b/app/pages/components/quantity-stepper.wrn index ec1abe4f..8eaf23cb 100644 --- a/app/pages/components/quantity-stepper.wrn +++ b/app/pages/components/quantity-stepper.wrn @@ -10,10 +10,10 @@ page QuantitySteppercomponent {
W WRNexusJS - +
-
content component

QuantityStepper

Reusable quantity stepper component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<QuantityStepper
+      
content component

QuantityStepper

Reusable quantity stepper component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<QuantityStepper
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page QuantitySteppercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/quiet-hours-picker.wrn b/app/pages/components/quiet-hours-picker.wrn index cabffc90..d7c158bb 100644 --- a/app/pages/components/quiet-hours-picker.wrn +++ b/app/pages/components/quiet-hours-picker.wrn @@ -10,10 +10,10 @@ page QuietHoursPickercomponent {
W WRNexusJS - +
-
forms component

QuietHoursPicker

Reusable quiet hours picker component.

@wrnexus/ui 0.2.688 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<QuietHoursPicker
+      
forms component

QuietHoursPicker

Reusable quiet hours picker component.

@wrnexus/ui 0.2.698 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<QuietHoursPicker
   label="Quiet hours"
   startName="quietStart"
   endName="quietEnd"
@@ -48,7 +48,7 @@ page QuietHoursPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/quote-text.wrn b/app/pages/components/quote-text.wrn index a60a98c3..93e0dfce 100644 --- a/app/pages/components/quote-text.wrn +++ b/app/pages/components/quote-text.wrn @@ -10,10 +10,10 @@ page QuoteTextcomponent {
W WRNexusJS - +
-
content component

QuoteText

Reusable quote text component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<QuoteText
+      
content component

QuoteText

Reusable quote text component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<QuoteText
   text="text"
   align="start"
 />

Legacy mount name: data-component="QuoteText".

Props and attributes

PropTypeRequirementDefault
textstringOptional""
alignstringOptional"start"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/QuoteText.wrn

component QuoteText {
@@ -28,7 +28,7 @@ page QuoteTextcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/radio-group.wrn b/app/pages/components/radio-group.wrn index ad3b12ae..ac03051c 100644 --- a/app/pages/components/radio-group.wrn +++ b/app/pages/components/radio-group.wrn @@ -10,10 +10,10 @@ page RadioGroupcomponent {
W WRNexusJS - +
-
forms component

RadioGroup

Reusable radio group component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RadioGroup
+      
forms component

RadioGroup

Reusable radio group component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RadioGroup
   label="Choose one"
   name="choice"
 />

Legacy mount name: data-component="RadioGroup".

Props and attributes

PropTypeRequirementDefault
classstringOptional""
labelstringOptional"Choose one"
namestringOptional"choice"

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/RadioGroup.wrn

component RadioGroup {
@@ -32,7 +32,7 @@ page RadioGroupcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/radio.wrn b/app/pages/components/radio.wrn index faf97d7c..ecacf8ee 100644 --- a/app/pages/components/radio.wrn +++ b/app/pages/components/radio.wrn @@ -10,10 +10,10 @@ page Radiocomponent {
W WRNexusJS - +
-
core component

Radio

Reusable radio component.

@wrnexus/ui 0.2.688 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Radio
+      
core component

Radio

Reusable radio component.

@wrnexus/ui 0.2.698 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Radio
   id="id"
   name="choice"
   value="value"
@@ -41,7 +41,7 @@ page Radiocomponent {
     }
 }
 
- + } diff --git a/app/pages/components/range-input.wrn b/app/pages/components/range-input.wrn index 772f2ca2..72846564 100644 --- a/app/pages/components/range-input.wrn +++ b/app/pages/components/range-input.wrn @@ -10,10 +10,10 @@ page RangeInputcomponent {
W WRNexusJS - +
-
forms component

RangeInput

Reusable range input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RangeInput
+      
forms component

RangeInput

Reusable range input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RangeInput
   label="Range"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page RangeInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/range-slider.wrn b/app/pages/components/range-slider.wrn index b12a473a..beb19244 100644 --- a/app/pages/components/range-slider.wrn +++ b/app/pages/components/range-slider.wrn @@ -10,10 +10,10 @@ page RangeSlidercomponent {
W WRNexusJS - +
-
content component

RangeSlider

Reusable range slider component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RangeSlider
+      
content component

RangeSlider

Reusable range slider component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RangeSlider
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page RangeSlidercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/rate-limit-input.wrn b/app/pages/components/rate-limit-input.wrn index b36dd004..a5a35ea4 100644 --- a/app/pages/components/rate-limit-input.wrn +++ b/app/pages/components/rate-limit-input.wrn @@ -10,10 +10,10 @@ page RateLimitInputcomponent {
W WRNexusJS - +
-
forms component

RateLimitInput

Reusable rate limit input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RateLimitInput
+      
forms component

RateLimitInput

Reusable rate limit input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RateLimitInput
   label="RateLimit"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page RateLimitInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/rate-limit-page.wrn b/app/pages/components/rate-limit-page.wrn index 7314625e..a2ae9ddf 100644 --- a/app/pages/components/rate-limit-page.wrn +++ b/app/pages/components/rate-limit-page.wrn @@ -10,10 +10,10 @@ page RateLimitPagecomponent {
W WRNexusJS - +
-
content component

RateLimitPage

Reusable rate limit page component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RateLimitPage
+      
content component

RateLimitPage

Reusable rate limit page component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RateLimitPage
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page RateLimitPagecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/rate-limited-state.wrn b/app/pages/components/rate-limited-state.wrn index a56b7ff4..f1204730 100644 --- a/app/pages/components/rate-limited-state.wrn +++ b/app/pages/components/rate-limited-state.wrn @@ -10,10 +10,10 @@ page RateLimitedStatecomponent {
W WRNexusJS - +
-
feedback component

RateLimitedState

Reusable rate limited state component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RateLimitedState
+      
feedback component

RateLimitedState

Reusable rate limited state component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RateLimitedState
   label="RateLimited"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page RateLimitedStatecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/rate-table.wrn b/app/pages/components/rate-table.wrn index 47947bad..ad6b148f 100644 --- a/app/pages/components/rate-table.wrn +++ b/app/pages/components/rate-table.wrn @@ -10,10 +10,10 @@ page RateTablecomponent {
W WRNexusJS - +
-
data component

RateTable

Reusable rate table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RateTable
+      
data component

RateTable

Reusable rate table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RateTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page RateTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/rating-slider.wrn b/app/pages/components/rating-slider.wrn index aa1e7a27..185557b1 100644 --- a/app/pages/components/rating-slider.wrn +++ b/app/pages/components/rating-slider.wrn @@ -10,10 +10,10 @@ page RatingSlidercomponent {
W WRNexusJS - +
-
content component

RatingSlider

Reusable rating slider component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RatingSlider
+      
content component

RatingSlider

Reusable rating slider component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RatingSlider
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page RatingSlidercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/recipient-selector.wrn b/app/pages/components/recipient-selector.wrn index 9a7bf874..b00f41fa 100644 --- a/app/pages/components/recipient-selector.wrn +++ b/app/pages/components/recipient-selector.wrn @@ -10,10 +10,10 @@ page RecipientSelectorcomponent {
W WRNexusJS - +
-
forms component

RecipientSelector

Reusable recipient selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RecipientSelector
+      
forms component

RecipientSelector

Reusable recipient selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RecipientSelector
   label="Recipient"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page RecipientSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/recovery-code-form.wrn b/app/pages/components/recovery-code-form.wrn index aa7b46f4..1a3bb8b7 100644 --- a/app/pages/components/recovery-code-form.wrn +++ b/app/pages/components/recovery-code-form.wrn @@ -10,10 +10,10 @@ page RecoveryCodeFormcomponent {
W WRNexusJS - +
-
content component

RecoveryCodeForm

Reusable recovery code form component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RecoveryCodeForm
+      
content component

RecoveryCodeForm

Reusable recovery code form component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RecoveryCodeForm
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page RecoveryCodeFormcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/recovery-code-input.wrn b/app/pages/components/recovery-code-input.wrn index adc506b0..74bb9285 100644 --- a/app/pages/components/recovery-code-input.wrn +++ b/app/pages/components/recovery-code-input.wrn @@ -10,10 +10,10 @@ page RecoveryCodeInputcomponent {
W WRNexusJS - +
-
forms component

RecoveryCodeInput

Reusable recovery code input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RecoveryCodeInput
+      
forms component

RecoveryCodeInput

Reusable recovery code input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RecoveryCodeInput
   label="RecoveryCode"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page RecoveryCodeInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/recurrence-rule-builder.wrn b/app/pages/components/recurrence-rule-builder.wrn index 17d98fca..1f1cdcbe 100644 --- a/app/pages/components/recurrence-rule-builder.wrn +++ b/app/pages/components/recurrence-rule-builder.wrn @@ -10,10 +10,10 @@ page RecurrenceRuleBuildercomponent {
W WRNexusJS - +
-
content component

RecurrenceRuleBuilder

Reusable recurrence rule builder component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RecurrenceRuleBuilder
+      
content component

RecurrenceRuleBuilder

Reusable recurrence rule builder component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RecurrenceRuleBuilder
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page RecurrenceRuleBuildercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/recurring-schedule-picker.wrn b/app/pages/components/recurring-schedule-picker.wrn index 43448509..ec98c5f1 100644 --- a/app/pages/components/recurring-schedule-picker.wrn +++ b/app/pages/components/recurring-schedule-picker.wrn @@ -10,10 +10,10 @@ page RecurringSchedulePickercomponent {
W WRNexusJS - +
-
forms component

RecurringSchedulePicker

Reusable recurring schedule picker component.

@wrnexus/ui 0.2.686 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RecurringSchedulePicker
+      
forms component

RecurringSchedulePicker

Reusable recurring schedule picker component.

@wrnexus/ui 0.2.696 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RecurringSchedulePicker
   id="recurring-schedule"
   name="recurrence"
   label="Repeat"
@@ -42,7 +42,7 @@ page RecurringSchedulePickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/redirect-uri-input.wrn b/app/pages/components/redirect-uri-input.wrn index ff205ad9..773eb5c5 100644 --- a/app/pages/components/redirect-uri-input.wrn +++ b/app/pages/components/redirect-uri-input.wrn @@ -10,10 +10,10 @@ page RedirectUriInputcomponent {
W WRNexusJS - +
-
forms component

RedirectUriInput

Reusable redirect uri input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RedirectUriInput
+      
forms component

RedirectUriInput

Reusable redirect uri input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RedirectUriInput
   label="RedirectUri"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page RedirectUriInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/reference-input.wrn b/app/pages/components/reference-input.wrn index 886b6a6f..6c2fbdd1 100644 --- a/app/pages/components/reference-input.wrn +++ b/app/pages/components/reference-input.wrn @@ -10,10 +10,10 @@ page ReferenceInputcomponent {
W WRNexusJS - +
-
forms component

ReferenceInput

Reusable reference input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ReferenceInput
+      
forms component

ReferenceInput

Reusable reference input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ReferenceInput
   label="Reference"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page ReferenceInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/regex-input.wrn b/app/pages/components/regex-input.wrn index df0b1c86..0bed81dc 100644 --- a/app/pages/components/regex-input.wrn +++ b/app/pages/components/regex-input.wrn @@ -10,10 +10,10 @@ page RegexInputcomponent {
W WRNexusJS - +
-
forms component

RegexInput

Reusable regex input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RegexInput
+      
forms component

RegexInput

Reusable regex input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RegexInput
   label="Regex"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page RegexInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/region-availability-table.wrn b/app/pages/components/region-availability-table.wrn index b3be0490..852724ac 100644 --- a/app/pages/components/region-availability-table.wrn +++ b/app/pages/components/region-availability-table.wrn @@ -10,10 +10,10 @@ page RegionAvailabilityTablecomponent {
W WRNexusJS - +
-
data component

RegionAvailabilityTable

Reusable region availability table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RegionAvailabilityTable
+      
data component

RegionAvailabilityTable

Reusable region availability table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RegionAvailabilityTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page RegionAvailabilityTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/region-selector.wrn b/app/pages/components/region-selector.wrn index 17c7785e..d4c6ae5d 100644 --- a/app/pages/components/region-selector.wrn +++ b/app/pages/components/region-selector.wrn @@ -10,10 +10,10 @@ page RegionSelectorcomponent {
W WRNexusJS - +
-
forms component

RegionSelector

Reusable region selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RegionSelector
+      
forms component

RegionSelector

Reusable region selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RegionSelector
   label="Region"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page RegionSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/region-unavailable-alert.wrn b/app/pages/components/region-unavailable-alert.wrn index 31c3e67b..a39e4012 100644 --- a/app/pages/components/region-unavailable-alert.wrn +++ b/app/pages/components/region-unavailable-alert.wrn @@ -10,10 +10,10 @@ page RegionUnavailableAlertcomponent {
W WRNexusJS - +
-
feedback component

RegionUnavailableAlert

Reusable region unavailable alert component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RegionUnavailableAlert
+      
feedback component

RegionUnavailableAlert

Reusable region unavailable alert component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RegionUnavailableAlert
   label="RegionUnavailable"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page RegionUnavailableAlertcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/region-unavailable-state.wrn b/app/pages/components/region-unavailable-state.wrn index 4c545617..f649887c 100644 --- a/app/pages/components/region-unavailable-state.wrn +++ b/app/pages/components/region-unavailable-state.wrn @@ -10,10 +10,10 @@ page RegionUnavailableStatecomponent {
W WRNexusJS - +
-
feedback component

RegionUnavailableState

Reusable region unavailable state component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RegionUnavailableState
+      
feedback component

RegionUnavailableState

Reusable region unavailable state component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RegionUnavailableState
   label="RegionUnavailable"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page RegionUnavailableStatecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/regional-privacy-banner.wrn b/app/pages/components/regional-privacy-banner.wrn index 65536708..2cc3228e 100644 --- a/app/pages/components/regional-privacy-banner.wrn +++ b/app/pages/components/regional-privacy-banner.wrn @@ -10,10 +10,10 @@ page RegionalPrivacyBannercomponent {
W WRNexusJS - +
-
feedback component

RegionalPrivacyBanner

Reusable regional privacy banner component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RegionalPrivacyBanner
+      
feedback component

RegionalPrivacyBanner

Reusable regional privacy banner component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RegionalPrivacyBanner
   label="RegionalPrivacy"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page RegionalPrivacyBannercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/reject-optional-cookies-button.wrn b/app/pages/components/reject-optional-cookies-button.wrn index d2209173..0cc26baf 100644 --- a/app/pages/components/reject-optional-cookies-button.wrn +++ b/app/pages/components/reject-optional-cookies-button.wrn @@ -10,10 +10,10 @@ page RejectOptionalCookiesButtoncomponent {
W WRNexusJS - +
-
actions component

RejectOptionalCookiesButton

Reusable reject optional cookies button component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RejectOptionalCookiesButton
+      
actions component

RejectOptionalCookiesButton

Reusable reject optional cookies button component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RejectOptionalCookiesButton
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page RejectOptionalCookiesButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/reopen-cookie-settings-button.wrn b/app/pages/components/reopen-cookie-settings-button.wrn index a04da3d9..783f277c 100644 --- a/app/pages/components/reopen-cookie-settings-button.wrn +++ b/app/pages/components/reopen-cookie-settings-button.wrn @@ -10,10 +10,10 @@ page ReopenCookieSettingsButtoncomponent {
W WRNexusJS - +
-
actions component

ReopenCookieSettingsButton

Reusable reopen cookie settings button component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ReopenCookieSettingsButton
+      
actions component

ReopenCookieSettingsButton

Reusable reopen cookie settings button component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ReopenCookieSettingsButton
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page ReopenCookieSettingsButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/report-card.wrn b/app/pages/components/report-card.wrn index 89492195..120803cd 100644 --- a/app/pages/components/report-card.wrn +++ b/app/pages/components/report-card.wrn @@ -10,10 +10,10 @@ page ReportCardcomponent {
W WRNexusJS - +
-
content component

ReportCard

Reusable report card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ReportCard
+      
content component

ReportCard

Reusable report card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ReportCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ReportCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/request-response-viewer.wrn b/app/pages/components/request-response-viewer.wrn index bb48ca9d..0dc7230c 100644 --- a/app/pages/components/request-response-viewer.wrn +++ b/app/pages/components/request-response-viewer.wrn @@ -10,10 +10,10 @@ page RequestResponseViewercomponent {
W WRNexusJS - +
-
content component

RequestResponseViewer

Reusable request response viewer component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RequestResponseViewer
+      
content component

RequestResponseViewer

Reusable request response viewer component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RequestResponseViewer
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page RequestResponseViewercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/request-viewer.wrn b/app/pages/components/request-viewer.wrn index ac982f1a..81fd7597 100644 --- a/app/pages/components/request-viewer.wrn +++ b/app/pages/components/request-viewer.wrn @@ -10,10 +10,10 @@ page RequestViewercomponent {
W WRNexusJS - +
-
content component

RequestViewer

Reusable request viewer component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RequestViewer
+      
content component

RequestViewer

Reusable request viewer component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RequestViewer
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page RequestViewercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/required-indicator.wrn b/app/pages/components/required-indicator.wrn index b094d92c..8cfad9fb 100644 --- a/app/pages/components/required-indicator.wrn +++ b/app/pages/components/required-indicator.wrn @@ -10,10 +10,10 @@ page RequiredIndicatorcomponent {
W WRNexusJS - +
-
feedback component

RequiredIndicator

Reusable required indicator component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RequiredIndicator
+      
feedback component

RequiredIndicator

Reusable required indicator component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RequiredIndicator
   label="Required"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page RequiredIndicatorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/reset-password-form.wrn b/app/pages/components/reset-password-form.wrn index 6a78edd6..f9bddd60 100644 --- a/app/pages/components/reset-password-form.wrn +++ b/app/pages/components/reset-password-form.wrn @@ -10,10 +10,10 @@ page ResetPasswordFormcomponent {
W WRNexusJS - +
-
content component

ResetPasswordForm

Reusable reset password form component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResetPasswordForm
+      
content component

ResetPasswordForm

Reusable reset password form component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResetPasswordForm
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ResetPasswordFormcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/resizable-panel.wrn b/app/pages/components/resizable-panel.wrn index 65ea3d74..fc34d0a3 100644 --- a/app/pages/components/resizable-panel.wrn +++ b/app/pages/components/resizable-panel.wrn @@ -10,10 +10,10 @@ page ResizablePanelcomponent {
W WRNexusJS - +
-
layout component

ResizablePanel

Reusable resizable panel component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResizablePanel
+      
layout component

ResizablePanel

Reusable resizable panel component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResizablePanel
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ResizablePanelcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/resource-card.wrn b/app/pages/components/resource-card.wrn index 3d3bb437..eb657296 100644 --- a/app/pages/components/resource-card.wrn +++ b/app/pages/components/resource-card.wrn @@ -10,10 +10,10 @@ page ResourceCardcomponent {
W WRNexusJS - +
-
content component

ResourceCard

Reusable resource card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResourceCard
+      
content component

ResourceCard

Reusable resource card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResourceCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ResourceCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/resource-download-card.wrn b/app/pages/components/resource-download-card.wrn index 872f80c7..bb5110f1 100644 --- a/app/pages/components/resource-download-card.wrn +++ b/app/pages/components/resource-download-card.wrn @@ -10,10 +10,10 @@ page ResourceDownloadCardcomponent {
W WRNexusJS - +
-
content component

ResourceDownloadCard

Reusable resource download card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResourceDownloadCard
+      
content component

ResourceDownloadCard

Reusable resource download card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResourceDownloadCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ResourceDownloadCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/resource-page-shell.wrn b/app/pages/components/resource-page-shell.wrn index 7fc9ae98..20aed3a3 100644 --- a/app/pages/components/resource-page-shell.wrn +++ b/app/pages/components/resource-page-shell.wrn @@ -10,10 +10,10 @@ page ResourcePageShellcomponent {
W WRNexusJS - +
-
layout component

ResourcePageShell

Reusable resource page shell component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResourcePageShell
+      
layout component

ResourcePageShell

Reusable resource page shell component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResourcePageShell
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ResourcePageShellcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/resource-search.wrn b/app/pages/components/resource-search.wrn index 7eaafeba..ba2bef55 100644 --- a/app/pages/components/resource-search.wrn +++ b/app/pages/components/resource-search.wrn @@ -10,10 +10,10 @@ page ResourceSearchcomponent {
W WRNexusJS - +
-
content component

ResourceSearch

Reusable resource search component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResourceSearch
+      
content component

ResourceSearch

Reusable resource search component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResourceSearch
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ResourceSearchcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/resource-type-badge.wrn b/app/pages/components/resource-type-badge.wrn index 6fde0756..9dbd0833 100644 --- a/app/pages/components/resource-type-badge.wrn +++ b/app/pages/components/resource-type-badge.wrn @@ -10,10 +10,10 @@ page ResourceTypeBadgecomponent {
W WRNexusJS - +
-
feedback component

ResourceTypeBadge

Reusable resource type badge component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResourceTypeBadge
+      
feedback component

ResourceTypeBadge

Reusable resource type badge component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResourceTypeBadge
   label="ResourceType"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ResourceTypeBadgecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/resources-mega-menu.wrn b/app/pages/components/resources-mega-menu.wrn index d007cdac..f0812e15 100644 --- a/app/pages/components/resources-mega-menu.wrn +++ b/app/pages/components/resources-mega-menu.wrn @@ -10,10 +10,10 @@ page ResourcesMegaMenucomponent {
W WRNexusJS - +
-
overlays component

ResourcesMegaMenu

Reusable resources mega menu component.

@wrnexus/ui 0.2.681 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResourcesMegaMenu />

Legacy mount name: data-component="ResourcesMegaMenu".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

This component does not declare a slot.

Events

This component does not declare a custom event.

Source contract

Installed source: components/ResourcesMegaMenu.wrn

component ResourcesMegaMenu {
+      
overlays component

ResourcesMegaMenu

Reusable resources mega menu component.

@wrnexus/ui 0.2.691 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResourcesMegaMenu />

Legacy mount name: data-component="ResourcesMegaMenu".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

This component does not declare a slot.

Events

This component does not declare a custom event.

Source contract

Installed source: components/ResourcesMegaMenu.wrn

component ResourcesMegaMenu {
     props {
         class: string = ""
     }
@@ -358,7 +358,7 @@ page ResourcesMegaMenucomponent {
     }
 }
 
- + } diff --git a/app/pages/components/response-viewer.wrn b/app/pages/components/response-viewer.wrn index bbe9df94..615655c5 100644 --- a/app/pages/components/response-viewer.wrn +++ b/app/pages/components/response-viewer.wrn @@ -10,10 +10,10 @@ page ResponseViewercomponent {
W WRNexusJS - +
-
content component

ResponseViewer

Reusable response viewer component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResponseViewer
+      
content component

ResponseViewer

Reusable response viewer component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResponseViewer
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ResponseViewercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/responsible-disclosure-cta.wrn b/app/pages/components/responsible-disclosure-cta.wrn index 0f41824e..875cb096 100644 --- a/app/pages/components/responsible-disclosure-cta.wrn +++ b/app/pages/components/responsible-disclosure-cta.wrn @@ -10,10 +10,10 @@ page ResponsibleDisclosureCTAcomponent {
W WRNexusJS - +
-
actions component

ResponsibleDisclosureCTA

Reusable responsible disclosure c t a component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResponsibleDisclosureCTA
+      
actions component

ResponsibleDisclosureCTA

Reusable responsible disclosure c t a component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResponsibleDisclosureCTA
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page ResponsibleDisclosureCTAcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/responsive-table.wrn b/app/pages/components/responsive-table.wrn index 4311c690..916d4458 100644 --- a/app/pages/components/responsive-table.wrn +++ b/app/pages/components/responsive-table.wrn @@ -10,10 +10,10 @@ page ResponsiveTablecomponent {
W WRNexusJS - +
-
data component

ResponsiveTable

Reusable responsive table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResponsiveTable
+      
data component

ResponsiveTable

Reusable responsive table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResponsiveTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page ResponsiveTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/results-section.wrn b/app/pages/components/results-section.wrn index 5fbb1691..91e19266 100644 --- a/app/pages/components/results-section.wrn +++ b/app/pages/components/results-section.wrn @@ -10,10 +10,10 @@ page ResultsSectioncomponent {
W WRNexusJS - +
-
layout component

ResultsSection

Reusable results section component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResultsSection
+      
layout component

ResultsSection

Reusable results section component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ResultsSection
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ResultsSectioncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/retention-table.wrn b/app/pages/components/retention-table.wrn index 6c7dc241..a43d6d7d 100644 --- a/app/pages/components/retention-table.wrn +++ b/app/pages/components/retention-table.wrn @@ -10,10 +10,10 @@ page RetentionTablecomponent {
W WRNexusJS - +
-
data component

RetentionTable

Reusable retention table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RetentionTable
+      
data component

RetentionTable

Reusable retention table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RetentionTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page RetentionTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/retry-count-input.wrn b/app/pages/components/retry-count-input.wrn index b3fbe076..f0be5c96 100644 --- a/app/pages/components/retry-count-input.wrn +++ b/app/pages/components/retry-count-input.wrn @@ -10,10 +10,10 @@ page RetryCountInputcomponent {
W WRNexusJS - +
-
forms component

RetryCountInput

Reusable retry count input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RetryCountInput
+      
forms component

RetryCountInput

Reusable retry count input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RetryCountInput
   label="RetryCount"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page RetryCountInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/revenue-chart.wrn b/app/pages/components/revenue-chart.wrn index 0b8dc6f2..bf63cc55 100644 --- a/app/pages/components/revenue-chart.wrn +++ b/app/pages/components/revenue-chart.wrn @@ -10,10 +10,10 @@ page RevenueChartcomponent {
W WRNexusJS - +
-
visualization component

RevenueChart

Reusable revenue chart component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RevenueChart
+      
visualization component

RevenueChart

Reusable revenue chart component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RevenueChart
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page RevenueChartcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/rgb-color-input.wrn b/app/pages/components/rgb-color-input.wrn index 1f75eedb..a738f379 100644 --- a/app/pages/components/rgb-color-input.wrn +++ b/app/pages/components/rgb-color-input.wrn @@ -10,10 +10,10 @@ page RgbColorInputcomponent {
W WRNexusJS - +
-
forms component

RgbColorInput

Reusable rgb color input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RgbColorInput
+      
forms component

RgbColorInput

Reusable rgb color input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RgbColorInput
   label="RgbColor"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page RgbColorInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/rich-text-editor.wrn b/app/pages/components/rich-text-editor.wrn index 3f4705da..cf00b1a8 100644 --- a/app/pages/components/rich-text-editor.wrn +++ b/app/pages/components/rich-text-editor.wrn @@ -10,10 +10,10 @@ page RichTextEditorcomponent {
W WRNexusJS - +
-
forms component

RichTextEditor

Reusable rich text editor component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RichTextEditor
+      
forms component

RichTextEditor

Reusable rich text editor component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RichTextEditor
   label="RichText"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page RichTextEditorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/rich-text-input.wrn b/app/pages/components/rich-text-input.wrn index 737f3634..8df817ff 100644 --- a/app/pages/components/rich-text-input.wrn +++ b/app/pages/components/rich-text-input.wrn @@ -10,10 +10,10 @@ page RichTextInputcomponent {
W WRNexusJS - +
-
forms component

RichTextInput

Reusable rich text input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RichTextInput
+      
forms component

RichTextInput

Reusable rich text input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RichTextInput
   label="RichText"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page RichTextInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/role-selector.wrn b/app/pages/components/role-selector.wrn index 299f31b5..5b691a20 100644 --- a/app/pages/components/role-selector.wrn +++ b/app/pages/components/role-selector.wrn @@ -10,10 +10,10 @@ page RoleSelectorcomponent {
W WRNexusJS - +
-
forms component

RoleSelector

Reusable role selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RoleSelector
+      
forms component

RoleSelector

Reusable role selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RoleSelector
   label="Role"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page RoleSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/rolling-date-range-picker.wrn b/app/pages/components/rolling-date-range-picker.wrn index 09330ea4..4ae2774b 100644 --- a/app/pages/components/rolling-date-range-picker.wrn +++ b/app/pages/components/rolling-date-range-picker.wrn @@ -10,10 +10,10 @@ page RollingDateRangePickercomponent {
W WRNexusJS - +
-
forms component

RollingDateRangePicker

Reusable rolling date range picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RollingDateRangePicker
+      
forms component

RollingDateRangePicker

Reusable rolling date range picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<RollingDateRangePicker
   label="RollingDateRange"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page RollingDateRangePickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/save-cookie-preferences-button.wrn b/app/pages/components/save-cookie-preferences-button.wrn index d75273ac..11e70e32 100644 --- a/app/pages/components/save-cookie-preferences-button.wrn +++ b/app/pages/components/save-cookie-preferences-button.wrn @@ -10,10 +10,10 @@ page SaveCookiePreferencesButtoncomponent {
W WRNexusJS - +
-
actions component

SaveCookiePreferencesButton

Reusable save cookie preferences button component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SaveCookiePreferencesButton
+      
actions component

SaveCookiePreferencesButton

Reusable save cookie preferences button component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SaveCookiePreferencesButton
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page SaveCookiePreferencesButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/saved-filter-selector.wrn b/app/pages/components/saved-filter-selector.wrn index ebcf6929..64b5414e 100644 --- a/app/pages/components/saved-filter-selector.wrn +++ b/app/pages/components/saved-filter-selector.wrn @@ -10,10 +10,10 @@ page SavedFilterSelectorcomponent {
W WRNexusJS - +
-
forms component

SavedFilterSelector

Reusable saved filter selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SavedFilterSelector
+      
forms component

SavedFilterSelector

Reusable saved filter selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SavedFilterSelector
   label="SavedFilter"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page SavedFilterSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/schedule-message-picker.wrn b/app/pages/components/schedule-message-picker.wrn index 78c50c31..006a7986 100644 --- a/app/pages/components/schedule-message-picker.wrn +++ b/app/pages/components/schedule-message-picker.wrn @@ -10,10 +10,10 @@ page ScheduleMessagePickercomponent {
W WRNexusJS - +
-
forms component

ScheduleMessagePicker

Reusable schedule message picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ScheduleMessagePicker
+      
forms component

ScheduleMessagePicker

Reusable schedule message picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ScheduleMessagePicker
   label="ScheduleMessage"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page ScheduleMessagePickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/schedule-picker.wrn b/app/pages/components/schedule-picker.wrn index 43270823..c76648d7 100644 --- a/app/pages/components/schedule-picker.wrn +++ b/app/pages/components/schedule-picker.wrn @@ -10,10 +10,10 @@ page SchedulePickercomponent {
W WRNexusJS - +
-
forms component

SchedulePicker

Reusable schedule picker component.

@wrnexus/ui 0.2.682 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SchedulePicker
+      
forms component

SchedulePicker

Reusable schedule picker component.

@wrnexus/ui 0.2.692 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SchedulePicker
   label="Schedule"
 />

Legacy mount name: data-component="SchedulePicker".

Props and attributes

PropTypeRequirementDefault
classstringOptional""
labelstringOptional"Schedule"

Slots

This component does not declare a slot.

Events

This component does not declare a custom event.

Source contract

Installed source: components/SchedulePicker.wrn

component SchedulePicker {
   props {
@@ -29,7 +29,7 @@ page SchedulePickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/scheduled-date-time-picker.wrn b/app/pages/components/scheduled-date-time-picker.wrn index dad526bf..ed78cc6e 100644 --- a/app/pages/components/scheduled-date-time-picker.wrn +++ b/app/pages/components/scheduled-date-time-picker.wrn @@ -10,10 +10,10 @@ page ScheduledDateTimePickercomponent {
W WRNexusJS - +
-
forms component

ScheduledDateTimePicker

Reusable scheduled date time picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ScheduledDateTimePicker
+      
forms component

ScheduledDateTimePicker

Reusable scheduled date time picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ScheduledDateTimePicker
   label="ScheduledDateTime"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page ScheduledDateTimePickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/screenshot-frame.wrn b/app/pages/components/screenshot-frame.wrn index 191b0858..19995b0e 100644 --- a/app/pages/components/screenshot-frame.wrn +++ b/app/pages/components/screenshot-frame.wrn @@ -10,10 +10,10 @@ page ScreenshotFramecomponent {
W WRNexusJS - +
-
layout component

ScreenshotFrame

Reusable screenshot frame component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ScreenshotFrame
+      
layout component

ScreenshotFrame

Reusable screenshot frame component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ScreenshotFrame
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ScreenshotFramecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/scroll-area.wrn b/app/pages/components/scroll-area.wrn index c7679693..04f141a6 100644 --- a/app/pages/components/scroll-area.wrn +++ b/app/pages/components/scroll-area.wrn @@ -10,10 +10,10 @@ page ScrollAreacomponent {
W WRNexusJS - +
-
core component

ScrollArea

Reusable scroll area component.

@wrnexus/ui 0.2.681 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ScrollArea />

Legacy mount name: data-component="ScrollArea".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/ScrollArea.wrn

component ScrollArea {
+      
core component

ScrollArea

Reusable scroll area component.

@wrnexus/ui 0.2.691 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ScrollArea />

Legacy mount name: data-component="ScrollArea".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/ScrollArea.wrn

component ScrollArea {
   props {
     class = ""
   }
@@ -24,7 +24,7 @@ page ScrollAreacomponent {
     }
 }
 
- + } diff --git a/app/pages/components/sdk-language-selector.wrn b/app/pages/components/sdk-language-selector.wrn index 8833634b..82d43ae6 100644 --- a/app/pages/components/sdk-language-selector.wrn +++ b/app/pages/components/sdk-language-selector.wrn @@ -10,10 +10,10 @@ page SdkLanguageSelectorcomponent {
W WRNexusJS - +
-
forms component

SdkLanguageSelector

Reusable sdk language selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SdkLanguageSelector
+      
forms component

SdkLanguageSelector

Reusable sdk language selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SdkLanguageSelector
   label="SdkLanguage"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page SdkLanguageSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/sdkcard.wrn b/app/pages/components/sdkcard.wrn index 4eda29f2..2c4955ae 100644 --- a/app/pages/components/sdkcard.wrn +++ b/app/pages/components/sdkcard.wrn @@ -10,10 +10,10 @@ page SDKCardcomponent {
W WRNexusJS - +
-
content component

SDKCard

Reusable s d k card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SDKCard
+      
content component

SDKCard

Reusable s d k card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SDKCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page SDKCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/sdklanguage-tabs.wrn b/app/pages/components/sdklanguage-tabs.wrn index 2b3a65fa..e2b3af5f 100644 --- a/app/pages/components/sdklanguage-tabs.wrn +++ b/app/pages/components/sdklanguage-tabs.wrn @@ -10,10 +10,10 @@ page SDKLanguageTabscomponent {
W WRNexusJS - +
-
content component

SDKLanguageTabs

Reusable s d k language tabs component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SDKLanguageTabs
+      
content component

SDKLanguageTabs

Reusable s d k language tabs component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SDKLanguageTabs
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page SDKLanguageTabscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/sdktabs.wrn b/app/pages/components/sdktabs.wrn index b88fc68c..2dde2b5e 100644 --- a/app/pages/components/sdktabs.wrn +++ b/app/pages/components/sdktabs.wrn @@ -10,10 +10,10 @@ page SDKTabscomponent {
W WRNexusJS - +
-
core component

SDKTabs

Reusable sdktabs component.

@wrnexus/ui 0.2.684 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SDKTabs
+      
core component

SDKTabs

Reusable sdktabs component.

@wrnexus/ui 0.2.694 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SDKTabs
   label="SDK languages"
   tabs="[]"
   defaultIndex="0"
@@ -35,7 +35,7 @@ page SDKTabscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/search-button.wrn b/app/pages/components/search-button.wrn index e39feb3b..6dbbb71c 100644 --- a/app/pages/components/search-button.wrn +++ b/app/pages/components/search-button.wrn @@ -10,10 +10,10 @@ page SearchButtoncomponent {
W WRNexusJS - +
-
actions component

SearchButton

Reusable search button component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SearchButton
+      
actions component

SearchButton

Reusable search button component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SearchButton
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page SearchButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/search-category-tabs.wrn b/app/pages/components/search-category-tabs.wrn index e2b662ea..0e19e2c4 100644 --- a/app/pages/components/search-category-tabs.wrn +++ b/app/pages/components/search-category-tabs.wrn @@ -10,10 +10,10 @@ page SearchCategoryTabscomponent {
W WRNexusJS - +
-
content component

SearchCategoryTabs

Reusable search category tabs component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SearchCategoryTabs
+      
content component

SearchCategoryTabs

Reusable search category tabs component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SearchCategoryTabs
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page SearchCategoryTabscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/search-dialog.wrn b/app/pages/components/search-dialog.wrn index 6665d9a3..422d13f3 100644 --- a/app/pages/components/search-dialog.wrn +++ b/app/pages/components/search-dialog.wrn @@ -10,10 +10,10 @@ page SearchDialogcomponent {
W WRNexusJS - +
-
overlays component

SearchDialog

Reusable search dialog component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SearchDialog
+      
overlays component

SearchDialog

Reusable search dialog component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SearchDialog
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page SearchDialogcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/search-empty-state.wrn b/app/pages/components/search-empty-state.wrn index e02c2532..58988a8a 100644 --- a/app/pages/components/search-empty-state.wrn +++ b/app/pages/components/search-empty-state.wrn @@ -10,10 +10,10 @@ page SearchEmptyStatecomponent {
W WRNexusJS - +
-
feedback component

SearchEmptyState

Reusable search empty state component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SearchEmptyState
+      
feedback component

SearchEmptyState

Reusable search empty state component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SearchEmptyState
   label="SearchEmpty"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page SearchEmptyStatecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/search-input.wrn b/app/pages/components/search-input.wrn index 5a85f8f8..971447d5 100644 --- a/app/pages/components/search-input.wrn +++ b/app/pages/components/search-input.wrn @@ -10,10 +10,10 @@ page SearchInputcomponent {
W WRNexusJS - +
-
forms component

SearchInput

Reusable search input component.

@wrnexus/ui 0.2.6812 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SearchInput
+      
forms component

SearchInput

Reusable search input component.

@wrnexus/ui 0.2.6912 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SearchInput
   id="id"
   name="name"
   label="Search"
@@ -45,7 +45,7 @@ page SearchInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/search-loading-state.wrn b/app/pages/components/search-loading-state.wrn index ce51196d..d96ea9b6 100644 --- a/app/pages/components/search-loading-state.wrn +++ b/app/pages/components/search-loading-state.wrn @@ -10,10 +10,10 @@ page SearchLoadingStatecomponent {
W WRNexusJS - +
-
feedback component

SearchLoadingState

Reusable search loading state component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SearchLoadingState
+      
feedback component

SearchLoadingState

Reusable search loading state component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SearchLoadingState
   label="SearchLoading"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page SearchLoadingStatecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/search-result-item.wrn b/app/pages/components/search-result-item.wrn index 77a15495..f1b473fd 100644 --- a/app/pages/components/search-result-item.wrn +++ b/app/pages/components/search-result-item.wrn @@ -10,10 +10,10 @@ page SearchResultItemcomponent {
W WRNexusJS - +
-
content component

SearchResultItem

Reusable search result item component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SearchResultItem
+      
content component

SearchResultItem

Reusable search result item component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SearchResultItem
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page SearchResultItemcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/second-picker.wrn b/app/pages/components/second-picker.wrn index c18b76eb..fc7e8af9 100644 --- a/app/pages/components/second-picker.wrn +++ b/app/pages/components/second-picker.wrn @@ -10,10 +10,10 @@ page SecondPickercomponent {
W WRNexusJS - +
-
forms component

SecondPicker

Reusable second picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecondPicker
+      
forms component

SecondPicker

Reusable second picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecondPicker
   label="Second"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page SecondPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/secondary-button.wrn b/app/pages/components/secondary-button.wrn index 17329051..8e6fa5bf 100644 --- a/app/pages/components/secondary-button.wrn +++ b/app/pages/components/secondary-button.wrn @@ -10,10 +10,10 @@ page SecondaryButtoncomponent {
W WRNexusJS - +
-
actions component

SecondaryButton

Reusable secondary button component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecondaryButton
+      
actions component

SecondaryButton

Reusable secondary button component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecondaryButton
   label="Action"
   type="button"
   disabled="false"
@@ -30,7 +30,7 @@ page SecondaryButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/secret-display.wrn b/app/pages/components/secret-display.wrn index 1a49b20e..78cfb011 100644 --- a/app/pages/components/secret-display.wrn +++ b/app/pages/components/secret-display.wrn @@ -10,10 +10,10 @@ page SecretDisplaycomponent {
W WRNexusJS - +
-
content component

SecretDisplay

Reusable secret display component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecretDisplay
+      
content component

SecretDisplay

Reusable secret display component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecretDisplay
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page SecretDisplaycomponent {
     }
 }
 
- + } diff --git a/app/pages/components/secret-input.wrn b/app/pages/components/secret-input.wrn index 8fa036d6..66769735 100644 --- a/app/pages/components/secret-input.wrn +++ b/app/pages/components/secret-input.wrn @@ -10,10 +10,10 @@ page SecretInputcomponent {
W WRNexusJS - +
-
forms component

SecretInput

Reusable secret input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecretInput
+      
forms component

SecretInput

Reusable secret input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecretInput
   label="Secret"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page SecretInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/secret-reveal-dialog.wrn b/app/pages/components/secret-reveal-dialog.wrn index e7d0df96..76b7c67b 100644 --- a/app/pages/components/secret-reveal-dialog.wrn +++ b/app/pages/components/secret-reveal-dialog.wrn @@ -10,10 +10,10 @@ page SecretRevealDialogcomponent {
W WRNexusJS - +
-
overlays component

SecretRevealDialog

Reusable secret reveal dialog component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecretRevealDialog
+      
overlays component

SecretRevealDialog

Reusable secret reveal dialog component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecretRevealDialog
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page SecretRevealDialogcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/section-actions.wrn b/app/pages/components/section-actions.wrn index 30716ceb..43b64dde 100644 --- a/app/pages/components/section-actions.wrn +++ b/app/pages/components/section-actions.wrn @@ -10,10 +10,10 @@ page SectionActionscomponent {
W WRNexusJS - +
-
actions component

SectionActions

Reusable section actions component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SectionActions
+      
actions component

SectionActions

Reusable section actions component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SectionActions
   label="Action"
   href="href"
   type="button"
@@ -35,7 +35,7 @@ page SectionActionscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/section-header.wrn b/app/pages/components/section-header.wrn index f265a6db..4b4524b6 100644 --- a/app/pages/components/section-header.wrn +++ b/app/pages/components/section-header.wrn @@ -10,10 +10,10 @@ page SectionHeadercomponent {
W WRNexusJS - +
-
layout component

SectionHeader

Reusable section header component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SectionHeader
+      
layout component

SectionHeader

Reusable section header component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SectionHeader
   eyebrow="eyebrow"
   title="Section title"
   description="description"
@@ -38,7 +38,7 @@ page SectionHeadercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/section-heading.wrn b/app/pages/components/section-heading.wrn index a83a336d..4c14c27a 100644 --- a/app/pages/components/section-heading.wrn +++ b/app/pages/components/section-heading.wrn @@ -10,10 +10,10 @@ page SectionHeadingcomponent {
W WRNexusJS - +
-
core component

SectionHeading

Reusable section heading component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SectionHeading
+      
core component

SectionHeading

Reusable section heading component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SectionHeading
   text="text"
   align="start"
 />

Legacy mount name: data-component="SectionHeading".

Props and attributes

PropTypeRequirementDefault
textstringOptional""
alignstringOptional"start"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/SectionHeading.wrn

component SectionHeading {
@@ -28,7 +28,7 @@ page SectionHeadingcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/section.wrn b/app/pages/components/section.wrn index cba24b95..1237cfbe 100644 --- a/app/pages/components/section.wrn +++ b/app/pages/components/section.wrn @@ -10,10 +10,10 @@ page Sectioncomponent {
W WRNexusJS - +
-
layout component

Section

Reusable section component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Section
+      
layout component

Section

Reusable section component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Section
   id="id"
   size="default"
   surface="default"
@@ -31,7 +31,7 @@ page Sectioncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/security-alert.wrn b/app/pages/components/security-alert.wrn index 39ee549b..303eedff 100644 --- a/app/pages/components/security-alert.wrn +++ b/app/pages/components/security-alert.wrn @@ -10,10 +10,10 @@ page SecurityAlertcomponent {
W WRNexusJS - +
-
feedback component

SecurityAlert

Reusable security alert component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecurityAlert
+      
feedback component

SecurityAlert

Reusable security alert component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecurityAlert
   label="Security"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page SecurityAlertcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/security-contact-card.wrn b/app/pages/components/security-contact-card.wrn index 38572b8d..5ab9829e 100644 --- a/app/pages/components/security-contact-card.wrn +++ b/app/pages/components/security-contact-card.wrn @@ -10,10 +10,10 @@ page SecurityContactCardcomponent {
W WRNexusJS - +
-
content component

SecurityContactCard

Reusable security contact card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecurityContactCard
+      
content component

SecurityContactCard

Reusable security contact card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecurityContactCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page SecurityContactCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/security-feature-card.wrn b/app/pages/components/security-feature-card.wrn index e6c134d4..4bf39bec 100644 --- a/app/pages/components/security-feature-card.wrn +++ b/app/pages/components/security-feature-card.wrn @@ -10,10 +10,10 @@ page SecurityFeatureCardcomponent {
W WRNexusJS - +
-
content component

SecurityFeatureCard

Reusable security feature card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecurityFeatureCard
+      
content component

SecurityFeatureCard

Reusable security feature card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecurityFeatureCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page SecurityFeatureCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/security-hero.wrn b/app/pages/components/security-hero.wrn index 607b6975..7b370756 100644 --- a/app/pages/components/security-hero.wrn +++ b/app/pages/components/security-hero.wrn @@ -10,10 +10,10 @@ page SecurityHerocomponent {
W WRNexusJS - +
-
layout component

SecurityHero

Reusable security hero component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecurityHero
+      
layout component

SecurityHero

Reusable security hero component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecurityHero
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page SecurityHerocomponent {
     }
 }
 
- + } diff --git a/app/pages/components/security-pillar-grid.wrn b/app/pages/components/security-pillar-grid.wrn index ee91b9b3..49d0790d 100644 --- a/app/pages/components/security-pillar-grid.wrn +++ b/app/pages/components/security-pillar-grid.wrn @@ -10,10 +10,10 @@ page SecurityPillarGridcomponent {
W WRNexusJS - +
-
data component

SecurityPillarGrid

Reusable security pillar grid component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecurityPillarGrid
+      
data component

SecurityPillarGrid

Reusable security pillar grid component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecurityPillarGrid
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page SecurityPillarGridcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/security-practice-list.wrn b/app/pages/components/security-practice-list.wrn index 2912e0b1..91a0f269 100644 --- a/app/pages/components/security-practice-list.wrn +++ b/app/pages/components/security-practice-list.wrn @@ -10,10 +10,10 @@ page SecurityPracticeListcomponent {
W WRNexusJS - +
-
data component

SecurityPracticeList

Reusable security practice list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecurityPracticeList
+      
data component

SecurityPracticeList

Reusable security practice list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecurityPracticeList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page SecurityPracticeListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/security-report-form.wrn b/app/pages/components/security-report-form.wrn index 04975cbb..1cc9b456 100644 --- a/app/pages/components/security-report-form.wrn +++ b/app/pages/components/security-report-form.wrn @@ -10,10 +10,10 @@ page SecurityReportFormcomponent {
W WRNexusJS - +
-
content component

SecurityReportForm

Reusable security report form component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecurityReportForm
+      
content component

SecurityReportForm

Reusable security report form component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SecurityReportForm
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page SecurityReportFormcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/select.wrn b/app/pages/components/select.wrn index a765568a..c30596ee 100644 --- a/app/pages/components/select.wrn +++ b/app/pages/components/select.wrn @@ -10,10 +10,10 @@ page Selectcomponent {
W WRNexusJS - +
-
core component

Select

Reusable select component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Select
+      
core component

Select

Reusable select component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Select
   id="id"
   name="name"
   label="Select"
@@ -43,7 +43,7 @@ page Selectcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/sender-id-input.wrn b/app/pages/components/sender-id-input.wrn index b52c2e0c..c0e1e7b6 100644 --- a/app/pages/components/sender-id-input.wrn +++ b/app/pages/components/sender-id-input.wrn @@ -10,10 +10,10 @@ page SenderIdInputcomponent {
W WRNexusJS - +
-
forms component

SenderIdInput

Reusable sender id input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SenderIdInput
+      
forms component

SenderIdInput

Reusable sender id input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SenderIdInput
   label="SenderId"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page SenderIdInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/server-error-page.wrn b/app/pages/components/server-error-page.wrn index d7488bad..c5770aaf 100644 --- a/app/pages/components/server-error-page.wrn +++ b/app/pages/components/server-error-page.wrn @@ -10,10 +10,10 @@ page ServerErrorPagecomponent {
W WRNexusJS - +
-
content component

ServerErrorPage

Reusable server error page component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ServerErrorPage
+      
content component

ServerErrorPage

Reusable server error page component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ServerErrorPage
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ServerErrorPagecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/service-level-table.wrn b/app/pages/components/service-level-table.wrn index 3cb6f9de..f2e2900b 100644 --- a/app/pages/components/service-level-table.wrn +++ b/app/pages/components/service-level-table.wrn @@ -10,10 +10,10 @@ page ServiceLevelTablecomponent {
W WRNexusJS - +
-
data component

ServiceLevelTable

Reusable service level table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ServiceLevelTable
+      
data component

ServiceLevelTable

Reusable service level table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ServiceLevelTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page ServiceLevelTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/service-status-badge.wrn b/app/pages/components/service-status-badge.wrn index f5e76ffb..de142ae5 100644 --- a/app/pages/components/service-status-badge.wrn +++ b/app/pages/components/service-status-badge.wrn @@ -10,10 +10,10 @@ page ServiceStatusBadgecomponent {
W WRNexusJS - +
-
feedback component

ServiceStatusBadge

Reusable service status badge component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ServiceStatusBadge
+      
feedback component

ServiceStatusBadge

Reusable service status badge component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ServiceStatusBadge
   label="ServiceStatus"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page ServiceStatusBadgecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/service-status-list.wrn b/app/pages/components/service-status-list.wrn index 3ceb2fd5..479a4529 100644 --- a/app/pages/components/service-status-list.wrn +++ b/app/pages/components/service-status-list.wrn @@ -10,10 +10,10 @@ page ServiceStatusListcomponent {
W WRNexusJS - +
-
data component

ServiceStatusList

Reusable service status list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ServiceStatusList
+      
data component

ServiceStatusList

Reusable service status list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ServiceStatusList
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page ServiceStatusListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/service-status-row.wrn b/app/pages/components/service-status-row.wrn index 6bfcf008..d4f16944 100644 --- a/app/pages/components/service-status-row.wrn +++ b/app/pages/components/service-status-row.wrn @@ -10,10 +10,10 @@ page ServiceStatusRowcomponent {
W WRNexusJS - +
-
data component

ServiceStatusRow

Reusable service status row component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ServiceStatusRow
+      
data component

ServiceStatusRow

Reusable service status row component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ServiceStatusRow
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page ServiceStatusRowcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/session-card.wrn b/app/pages/components/session-card.wrn index 78471e1f..2b2f125c 100644 --- a/app/pages/components/session-card.wrn +++ b/app/pages/components/session-card.wrn @@ -10,10 +10,10 @@ page SessionCardcomponent {
W WRNexusJS - +
-
content component

SessionCard

Reusable session card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SessionCard
+      
content component

SessionCard

Reusable session card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SessionCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page SessionCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/session-expired-dialog.wrn b/app/pages/components/session-expired-dialog.wrn index 85b43ce6..73db45db 100644 --- a/app/pages/components/session-expired-dialog.wrn +++ b/app/pages/components/session-expired-dialog.wrn @@ -10,10 +10,10 @@ page SessionExpiredDialogcomponent {
W WRNexusJS - +
-
overlays component

SessionExpiredDialog

Reusable session expired dialog component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SessionExpiredDialog
+      
overlays component

SessionExpiredDialog

Reusable session expired dialog component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SessionExpiredDialog
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page SessionExpiredDialogcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/setup-checklist.wrn b/app/pages/components/setup-checklist.wrn index f57a8ea8..24a39f1c 100644 --- a/app/pages/components/setup-checklist.wrn +++ b/app/pages/components/setup-checklist.wrn @@ -10,10 +10,10 @@ page SetupChecklistcomponent {
W WRNexusJS - +
-
content component

SetupChecklist

Reusable setup checklist component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SetupChecklist
+      
content component

SetupChecklist

Reusable setup checklist component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SetupChecklist
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page SetupChecklistcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/severity-selector.wrn b/app/pages/components/severity-selector.wrn index 7bb7448c..f826bd7d 100644 --- a/app/pages/components/severity-selector.wrn +++ b/app/pages/components/severity-selector.wrn @@ -10,10 +10,10 @@ page SeveritySelectorcomponent {
W WRNexusJS - +
-
forms component

SeveritySelector

Reusable severity selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SeveritySelector
+      
forms component

SeveritySelector

Reusable severity selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SeveritySelector
   label="Severity"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page SeveritySelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/shadow-picker.wrn b/app/pages/components/shadow-picker.wrn index 2c8c51b6..52b51f14 100644 --- a/app/pages/components/shadow-picker.wrn +++ b/app/pages/components/shadow-picker.wrn @@ -10,10 +10,10 @@ page ShadowPickercomponent {
W WRNexusJS - +
-
forms component

ShadowPicker

Reusable shadow picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ShadowPicker
+      
forms component

ShadowPicker

Reusable shadow picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ShadowPicker
   label="Shadow"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page ShadowPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/share-action.wrn b/app/pages/components/share-action.wrn index 93c5050a..bbdafffd 100644 --- a/app/pages/components/share-action.wrn +++ b/app/pages/components/share-action.wrn @@ -10,10 +10,10 @@ page ShareActioncomponent {
W WRNexusJS - +
-
actions component

ShareAction

Reusable share action component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ShareAction
+      
actions component

ShareAction

Reusable share action component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ShareAction
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page ShareActioncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/share-button.wrn b/app/pages/components/share-button.wrn index 31ce8cc6..d0a9ef3e 100644 --- a/app/pages/components/share-button.wrn +++ b/app/pages/components/share-button.wrn @@ -10,10 +10,10 @@ page ShareButtoncomponent {
W WRNexusJS - +
-
actions component

ShareButton

Reusable share button component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ShareButton
+      
actions component

ShareButton

Reusable share button component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ShareButton
   label="Action"
   type="button"
   disabled="false"
@@ -30,7 +30,7 @@ page ShareButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/side-panel.wrn b/app/pages/components/side-panel.wrn index 14e23adb..fe887fa7 100644 --- a/app/pages/components/side-panel.wrn +++ b/app/pages/components/side-panel.wrn @@ -10,10 +10,10 @@ page SidePanelcomponent {
W WRNexusJS - +
-
layout component

SidePanel

Reusable side panel component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SidePanel
+      
layout component

SidePanel

Reusable side panel component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SidePanel
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page SidePanelcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/sidebar-layout.wrn b/app/pages/components/sidebar-layout.wrn index 1bdcddc2..d7506f47 100644 --- a/app/pages/components/sidebar-layout.wrn +++ b/app/pages/components/sidebar-layout.wrn @@ -10,10 +10,10 @@ page SidebarLayoutcomponent {
W WRNexusJS - +
-
layout component

SidebarLayout

Reusable sidebar layout component.

@wrnexus/ui 0.2.681 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SidebarLayout />

Legacy mount name: data-component="SidebarLayout".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/SidebarLayout.wrn

component SidebarLayout {
+      
layout component

SidebarLayout

Reusable sidebar layout component.

@wrnexus/ui 0.2.691 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SidebarLayout />

Legacy mount name: data-component="SidebarLayout".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/SidebarLayout.wrn

component SidebarLayout {
   props {
     class = ""
   }
@@ -24,7 +24,7 @@ page SidebarLayoutcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/sign-in-form.wrn b/app/pages/components/sign-in-form.wrn index 87b66457..f079307c 100644 --- a/app/pages/components/sign-in-form.wrn +++ b/app/pages/components/sign-in-form.wrn @@ -10,10 +10,10 @@ page SignInFormcomponent {
W WRNexusJS - +
-
content component

SignInForm

Reusable sign in form component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SignInForm
+      
content component

SignInForm

Reusable sign in form component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SignInForm
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page SignInFormcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/sign-in-link.wrn b/app/pages/components/sign-in-link.wrn index 694ecc75..a4f63983 100644 --- a/app/pages/components/sign-in-link.wrn +++ b/app/pages/components/sign-in-link.wrn @@ -10,10 +10,10 @@ page SignInLinkcomponent {
W WRNexusJS - +
-
actions component

SignInLink

Reusable sign in link component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SignInLink
+      
actions component

SignInLink

Reusable sign in link component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SignInLink
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page SignInLinkcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/sign-up-form.wrn b/app/pages/components/sign-up-form.wrn index 995bc944..7736b0d6 100644 --- a/app/pages/components/sign-up-form.wrn +++ b/app/pages/components/sign-up-form.wrn @@ -10,10 +10,10 @@ page SignUpFormcomponent {
W WRNexusJS - +
-
content component

SignUpForm

Reusable sign up form component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SignUpForm
+      
content component

SignUpForm

Reusable sign up form component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SignUpForm
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page SignUpFormcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/site-search.wrn b/app/pages/components/site-search.wrn index df00569e..dc25139e 100644 --- a/app/pages/components/site-search.wrn +++ b/app/pages/components/site-search.wrn @@ -10,10 +10,10 @@ page SiteSearchcomponent {
W WRNexusJS - +
-
content component

SiteSearch

Reusable site search component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SiteSearch
+      
content component

SiteSearch

Reusable site search component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SiteSearch
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page SiteSearchcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/skeleton.wrn b/app/pages/components/skeleton.wrn index c623ddda..b43bd5dc 100644 --- a/app/pages/components/skeleton.wrn +++ b/app/pages/components/skeleton.wrn @@ -10,10 +10,10 @@ page Skeletoncomponent {
W WRNexusJS - +
-
feedback component

Skeleton

Reusable skeleton component.

@wrnexus/ui 0.2.683 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Skeleton
+      
feedback component

Skeleton

Reusable skeleton component.

@wrnexus/ui 0.2.693 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Skeleton
   height="4"
   rounded="lg"
 />

Legacy mount name: data-component="Skeleton".

Props and attributes

PropTypeRequirementDefault
heightstringOptional"4"
roundedstringOptional"lg"
classNamestringOptional""

Slots

This component does not declare a slot.

Events

This component does not declare a custom event.

Source contract

Installed source: components/Skeleton.wrn

component Skeleton {
@@ -28,7 +28,7 @@ page Skeletoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/skip-link.wrn b/app/pages/components/skip-link.wrn index 0b0e043f..f4382b26 100644 --- a/app/pages/components/skip-link.wrn +++ b/app/pages/components/skip-link.wrn @@ -10,10 +10,10 @@ page SkipLinkcomponent {
W WRNexusJS - +
-
actions component

SkipLink

Reusable skip link component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SkipLink
+      
actions component

SkipLink

Reusable skip link component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SkipLink
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page SkipLinkcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/sla-table.wrn b/app/pages/components/sla-table.wrn index 8ebaff94..927e10c5 100644 --- a/app/pages/components/sla-table.wrn +++ b/app/pages/components/sla-table.wrn @@ -10,10 +10,10 @@ page SlaTablecomponent {
W WRNexusJS - +
-
data component

SlaTable

Reusable sla table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SlaTable
+      
data component

SlaTable

Reusable sla table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SlaTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page SlaTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/slider.wrn b/app/pages/components/slider.wrn index ded477c2..3559c638 100644 --- a/app/pages/components/slider.wrn +++ b/app/pages/components/slider.wrn @@ -10,10 +10,10 @@ page Slidercomponent {
W WRNexusJS - +
-
content component

Slider

Reusable slider component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Slider
+      
content component

Slider

Reusable slider component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Slider
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page Slidercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/slug-input.wrn b/app/pages/components/slug-input.wrn index e6b3ce34..e5135e1d 100644 --- a/app/pages/components/slug-input.wrn +++ b/app/pages/components/slug-input.wrn @@ -10,10 +10,10 @@ page SlugInputcomponent {
W WRNexusJS - +
-
forms component

SlugInput

Reusable slug input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SlugInput
+      
forms component

SlugInput

Reusable slug input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SlugInput
   label="Slug"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page SlugInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/small-text.wrn b/app/pages/components/small-text.wrn index 6b7e4c79..0781111c 100644 --- a/app/pages/components/small-text.wrn +++ b/app/pages/components/small-text.wrn @@ -10,10 +10,10 @@ page SmallTextcomponent {
W WRNexusJS - +
-
content component

SmallText

Reusable small text component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SmallText
+      
content component

SmallText

Reusable small text component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SmallText
   text="text"
   align="start"
 />

Legacy mount name: data-component="SmallText".

Props and attributes

PropTypeRequirementDefault
textstringOptional""
alignstringOptional"start"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/SmallText.wrn

component SmallText {
@@ -28,7 +28,7 @@ page SmallTextcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/smart-route-diagram.wrn b/app/pages/components/smart-route-diagram.wrn index cb377aad..4969e377 100644 --- a/app/pages/components/smart-route-diagram.wrn +++ b/app/pages/components/smart-route-diagram.wrn @@ -10,10 +10,10 @@ page SmartRouteDiagramcomponent {
W WRNexusJS - +
-
visualization component

SmartRouteDiagram

Reusable smart route diagram component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SmartRouteDiagram
+      
visualization component

SmartRouteDiagram

Reusable smart route diagram component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SmartRouteDiagram
   title="title"
   value="value"
   description="description"
@@ -37,7 +37,7 @@ page SmartRouteDiagramcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/sms-composer.wrn b/app/pages/components/sms-composer.wrn index 91e252ff..e90da01c 100644 --- a/app/pages/components/sms-composer.wrn +++ b/app/pages/components/sms-composer.wrn @@ -10,10 +10,10 @@ page SmsComposercomponent {
W WRNexusJS - +
-
content component

SmsComposer

Reusable sms composer component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SmsComposer
+      
content component

SmsComposer

Reusable sms composer component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SmsComposer
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page SmsComposercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/sms-message-editor.wrn b/app/pages/components/sms-message-editor.wrn index 691ee5e9..a3d26842 100644 --- a/app/pages/components/sms-message-editor.wrn +++ b/app/pages/components/sms-message-editor.wrn @@ -10,10 +10,10 @@ page SmsMessageEditorcomponent {
W WRNexusJS - +
-
forms component

SmsMessageEditor

Reusable sms message editor component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SmsMessageEditor
+      
forms component

SmsMessageEditor

Reusable sms message editor component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SmsMessageEditor
   label="SmsMessage"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page SmsMessageEditorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/sms-segment-counter.wrn b/app/pages/components/sms-segment-counter.wrn index 257e5ca1..945e34ea 100644 --- a/app/pages/components/sms-segment-counter.wrn +++ b/app/pages/components/sms-segment-counter.wrn @@ -10,10 +10,10 @@ page SmsSegmentCountercomponent {
W WRNexusJS - +
-
feedback component

SmsSegmentCounter

Reusable sms segment counter component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SmsSegmentCounter
+      
feedback component

SmsSegmentCounter

Reusable sms segment counter component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SmsSegmentCounter
   label="SmsSegment"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page SmsSegmentCountercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/social-share.wrn b/app/pages/components/social-share.wrn index de7368ce..3b372a99 100644 --- a/app/pages/components/social-share.wrn +++ b/app/pages/components/social-share.wrn @@ -10,10 +10,10 @@ page SocialSharecomponent {
W WRNexusJS - +
-
core component

SocialShare

Reusable social share component.

@wrnexus/ui 0.2.6810 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SocialShare
+      
core component

SocialShare

Reusable social share component.

@wrnexus/ui 0.2.6910 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SocialShare
   title="Share this page"
   description="description"
   url="url"
@@ -160,7 +160,7 @@ page SocialSharecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/solution-hero.wrn b/app/pages/components/solution-hero.wrn index f8cf3af9..2c17463a 100644 --- a/app/pages/components/solution-hero.wrn +++ b/app/pages/components/solution-hero.wrn @@ -10,10 +10,10 @@ page SolutionHerocomponent {
W WRNexusJS - +
-
layout component

SolutionHero

Reusable solution hero component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SolutionHero
+      
layout component

SolutionHero

Reusable solution hero component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SolutionHero
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page SolutionHerocomponent {
     }
 }
 
- + } diff --git a/app/pages/components/solution-page-shell.wrn b/app/pages/components/solution-page-shell.wrn index 2467d7db..9891bff6 100644 --- a/app/pages/components/solution-page-shell.wrn +++ b/app/pages/components/solution-page-shell.wrn @@ -10,10 +10,10 @@ page SolutionPageShellcomponent {
W WRNexusJS - +
-
layout component

SolutionPageShell

Reusable solution page shell component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SolutionPageShell
+      
layout component

SolutionPageShell

Reusable solution page shell component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SolutionPageShell
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page SolutionPageShellcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/solution-section.wrn b/app/pages/components/solution-section.wrn index 6dc6a4a0..babb5363 100644 --- a/app/pages/components/solution-section.wrn +++ b/app/pages/components/solution-section.wrn @@ -10,10 +10,10 @@ page SolutionSectioncomponent {
W WRNexusJS - +
-
layout component

SolutionSection

Reusable solution section component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SolutionSection
+      
layout component

SolutionSection

Reusable solution section component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SolutionSection
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page SolutionSectioncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/solutions-mega-menu.wrn b/app/pages/components/solutions-mega-menu.wrn index 181c4b06..77e0242a 100644 --- a/app/pages/components/solutions-mega-menu.wrn +++ b/app/pages/components/solutions-mega-menu.wrn @@ -10,10 +10,10 @@ page SolutionsMegaMenucomponent {
W WRNexusJS - +
-
overlays component

SolutionsMegaMenu

Reusable solutions mega menu component.

@wrnexus/ui 0.2.681 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SolutionsMegaMenu />

Legacy mount name: data-component="SolutionsMegaMenu".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

This component does not declare a slot.

Events

This component does not declare a custom event.

Source contract

Installed source: components/SolutionsMegaMenu.wrn

component SolutionsMegaMenu {
+      
overlays component

SolutionsMegaMenu

Reusable solutions mega menu component.

@wrnexus/ui 0.2.691 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SolutionsMegaMenu />

Legacy mount name: data-component="SolutionsMegaMenu".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

This component does not declare a slot.

Events

This component does not declare a custom event.

Source contract

Installed source: components/SolutionsMegaMenu.wrn

component SolutionsMegaMenu {
     props {
         class: string = ""
     }
@@ -358,7 +358,7 @@ page SolutionsMegaMenucomponent {
     }
 }
 
- + } diff --git a/app/pages/components/sortable-table.wrn b/app/pages/components/sortable-table.wrn index deae6cb1..d1eac81a 100644 --- a/app/pages/components/sortable-table.wrn +++ b/app/pages/components/sortable-table.wrn @@ -10,10 +10,10 @@ page SortableTablecomponent {
W WRNexusJS - +
-
data component

SortableTable

Reusable sortable table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SortableTable
+      
data component

SortableTable

Reusable sortable table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SortableTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page SortableTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/spacer.wrn b/app/pages/components/spacer.wrn index ce3cfc5b..50b76219 100644 --- a/app/pages/components/spacer.wrn +++ b/app/pages/components/spacer.wrn @@ -10,10 +10,10 @@ page spacercomponent {
W WRNexusJS - +
-
core component

spacer

Reusable spacer component.

@wrnexus/ui 0.2.681 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<spacer />

Legacy mount name: data-component="spacer".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

This component does not declare a slot.

Events

This component does not declare a custom event.

Source contract

Installed source: components/spacer.wrn

// Flexible spacer: grows to push siblings apart inside a flex row/column.
+      
core component

spacer

Reusable spacer component.

@wrnexus/ui 0.2.691 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<spacer />

Legacy mount name: data-component="spacer".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

This component does not declare a slot.

Events

This component does not declare a custom event.

Source contract

Installed source: components/spacer.wrn

// Flexible spacer: grows to push siblings apart inside a flex row/column.
 component Spacer {
   props {
     class = ""
@@ -24,7 +24,7 @@ component Spacer {
     }
 }
 
- + } diff --git a/app/pages/components/spinner.wrn b/app/pages/components/spinner.wrn index c6f276c5..970dfc71 100644 --- a/app/pages/components/spinner.wrn +++ b/app/pages/components/spinner.wrn @@ -10,10 +10,10 @@ page Spinnercomponent {
W WRNexusJS - +
-
core component

Spinner

Reusable spinner component.

@wrnexus/ui 0.2.683 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Spinner
+      
core component

Spinner

Reusable spinner component.

@wrnexus/ui 0.2.693 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Spinner
   label="Loading"
   size="md"
 />

Legacy mount name: data-component="Spinner".

Props and attributes

PropTypeRequirementDefault
classstringOptional""
labelstringOptional"Loading"
sizestringOptional"md"

Slots

This component does not declare a slot.

Events

This component does not declare a custom event.

Source contract

Installed source: components/Spinner.wrn

component Spinner {
@@ -28,7 +28,7 @@ page Spinnercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/split-button.wrn b/app/pages/components/split-button.wrn index 35bdfdb5..2f8c2368 100644 --- a/app/pages/components/split-button.wrn +++ b/app/pages/components/split-button.wrn @@ -10,10 +10,10 @@ page SplitButtoncomponent {
W WRNexusJS - +
-
actions component

SplitButton

Reusable split button component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SplitButton
+      
actions component

SplitButton

Reusable split button component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SplitButton
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page SplitButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/split-cta.wrn b/app/pages/components/split-cta.wrn index 0b4a3392..4b2a05cd 100644 --- a/app/pages/components/split-cta.wrn +++ b/app/pages/components/split-cta.wrn @@ -10,10 +10,10 @@ page SplitCTAcomponent {
W WRNexusJS - +
-
actions component

SplitCTA

Reusable split c t a component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SplitCTA
+      
actions component

SplitCTA

Reusable split c t a component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SplitCTA
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page SplitCTAcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/split-hero.wrn b/app/pages/components/split-hero.wrn index 6b357e09..7b5a61a8 100644 --- a/app/pages/components/split-hero.wrn +++ b/app/pages/components/split-hero.wrn @@ -10,10 +10,10 @@ page SplitHerocomponent {
W WRNexusJS - +
-
layout component

SplitHero

Reusable split hero component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SplitHero
+      
layout component

SplitHero

Reusable split hero component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SplitHero
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page SplitHerocomponent {
     }
 }
 
- + } diff --git a/app/pages/components/split-layout.wrn b/app/pages/components/split-layout.wrn index af113043..5812089e 100644 --- a/app/pages/components/split-layout.wrn +++ b/app/pages/components/split-layout.wrn @@ -10,10 +10,10 @@ page SplitLayoutcomponent {
W WRNexusJS - +
-
layout component

SplitLayout

Reusable split layout component.

@wrnexus/ui 0.2.681 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SplitLayout />

Legacy mount name: data-component="SplitLayout".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/SplitLayout.wrn

component SplitLayout {
+      
layout component

SplitLayout

Reusable split layout component.

@wrnexus/ui 0.2.691 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SplitLayout />

Legacy mount name: data-component="SplitLayout".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/SplitLayout.wrn

component SplitLayout {
   props {
     class = ""
   }
@@ -24,7 +24,7 @@ page SplitLayoutcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/split-section-header.wrn b/app/pages/components/split-section-header.wrn index d8eb2bd3..e4b04a1d 100644 --- a/app/pages/components/split-section-header.wrn +++ b/app/pages/components/split-section-header.wrn @@ -10,10 +10,10 @@ page SplitSectionHeadercomponent {
W WRNexusJS - +
-
layout component

SplitSectionHeader

Reusable split section header component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SplitSectionHeader
+      
layout component

SplitSectionHeader

Reusable split section header component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SplitSectionHeader
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page SplitSectionHeadercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/stack.wrn b/app/pages/components/stack.wrn index 09e74e02..495ed278 100644 --- a/app/pages/components/stack.wrn +++ b/app/pages/components/stack.wrn @@ -10,10 +10,10 @@ page Stackcomponent {
W WRNexusJS - +
-
core component

Stack

Reusable stack component.

@wrnexus/ui 0.2.682 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Stack
+      
core component

Stack

Reusable stack component.

@wrnexus/ui 0.2.692 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Stack
   gap="4"
 />

Legacy mount name: data-component="Stack".

Props and attributes

PropTypeRequirementDefault
gapstringOptional"4"
classNamestringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Stack.wrn

component Stack {
   props {
@@ -27,7 +27,7 @@ page Stackcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/start-free-button.wrn b/app/pages/components/start-free-button.wrn index d6505cfe..3e32593b 100644 --- a/app/pages/components/start-free-button.wrn +++ b/app/pages/components/start-free-button.wrn @@ -10,10 +10,10 @@ page StartFreeButtoncomponent {
W WRNexusJS - +
-
actions component

StartFreeButton

Reusable start free button component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StartFreeButton
+      
actions component

StartFreeButton

Reusable start free button component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StartFreeButton
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page StartFreeButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/stat-card.wrn b/app/pages/components/stat-card.wrn index 594e47ec..573f06d8 100644 --- a/app/pages/components/stat-card.wrn +++ b/app/pages/components/stat-card.wrn @@ -10,10 +10,10 @@ page StatCardcomponent {
W WRNexusJS - +
-
content component

StatCard

Reusable stat card component.

@wrnexus/ui 0.2.685 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StatCard
+      
content component

StatCard

Reusable stat card component.

@wrnexus/ui 0.2.695 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StatCard
   label="Metric"
   value="0"
   change="change"
@@ -37,7 +37,7 @@ page StatCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/state-selector.wrn b/app/pages/components/state-selector.wrn index 75150fe7..70e80d37 100644 --- a/app/pages/components/state-selector.wrn +++ b/app/pages/components/state-selector.wrn @@ -10,10 +10,10 @@ page StateSelectorcomponent {
W WRNexusJS - +
-
forms component

StateSelector

Reusable state selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StateSelector
+      
forms component

StateSelector

Reusable state selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StateSelector
   label="State"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page StateSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/status-badge.wrn b/app/pages/components/status-badge.wrn index c6f961e7..d7a728e5 100644 --- a/app/pages/components/status-badge.wrn +++ b/app/pages/components/status-badge.wrn @@ -10,10 +10,10 @@ page StatusBadgecomponent {
W WRNexusJS - +
-
feedback component

StatusBadge

Reusable status badge component.

@wrnexus/ui 0.2.682 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StatusBadge
+      
feedback component

StatusBadge

Reusable status badge component.

@wrnexus/ui 0.2.692 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StatusBadge
   status="operational"
 />

Legacy mount name: data-component="StatusBadge".

Props and attributes

PropTypeRequirementDefault
classstringOptional""
statusstringOptional"operational"

Slots

This component does not declare a slot.

Events

This component does not declare a custom event.

Source contract

Installed source: components/StatusBadge.wrn

component StatusBadge {
   props {
@@ -27,7 +27,7 @@ page StatusBadgecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/status-banner.wrn b/app/pages/components/status-banner.wrn index 9c426820..dd4da158 100644 --- a/app/pages/components/status-banner.wrn +++ b/app/pages/components/status-banner.wrn @@ -10,10 +10,10 @@ page StatusBannercomponent {
W WRNexusJS - +
-
core component

StatusBanner

Reusable status banner component.

@wrnexus/ui 0.2.689 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StatusBanner
+      
core component

StatusBanner

Reusable status banner component.

@wrnexus/ui 0.2.699 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StatusBanner
   type="info"
   title="title"
   description="description"
@@ -141,7 +141,7 @@ page StatusBannercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/status-page-shell.wrn b/app/pages/components/status-page-shell.wrn index 668117fc..cc46959f 100644 --- a/app/pages/components/status-page-shell.wrn +++ b/app/pages/components/status-page-shell.wrn @@ -10,10 +10,10 @@ page StatusPageShellcomponent {
W WRNexusJS - +
-
layout component

StatusPageShell

Reusable status page shell component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StatusPageShell
+      
layout component

StatusPageShell

Reusable status page shell component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StatusPageShell
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page StatusPageShellcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/status-selector.wrn b/app/pages/components/status-selector.wrn index 689e37a2..8b9262a7 100644 --- a/app/pages/components/status-selector.wrn +++ b/app/pages/components/status-selector.wrn @@ -10,10 +10,10 @@ page StatusSelectorcomponent {
W WRNexusJS - +
-
forms component

StatusSelector

Reusable status selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StatusSelector
+      
forms component

StatusSelector

Reusable status selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StatusSelector
   label="Status"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page StatusSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/status-subscribe-form.wrn b/app/pages/components/status-subscribe-form.wrn index 04d94b04..745dc929 100644 --- a/app/pages/components/status-subscribe-form.wrn +++ b/app/pages/components/status-subscribe-form.wrn @@ -10,10 +10,10 @@ page StatusSubscribeFormcomponent {
W WRNexusJS - +
-
content component

StatusSubscribeForm

Reusable status subscribe form component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StatusSubscribeForm
+      
content component

StatusSubscribeForm

Reusable status subscribe form component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StatusSubscribeForm
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page StatusSubscribeFormcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/status-table.wrn b/app/pages/components/status-table.wrn index efe7d72e..d502b962 100644 --- a/app/pages/components/status-table.wrn +++ b/app/pages/components/status-table.wrn @@ -10,10 +10,10 @@ page StatusTablecomponent {
W WRNexusJS - +
-
data component

StatusTable

Reusable status table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StatusTable
+      
data component

StatusTable

Reusable status table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StatusTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page StatusTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/step-navigation.wrn b/app/pages/components/step-navigation.wrn index 126c2cd9..7b6b9560 100644 --- a/app/pages/components/step-navigation.wrn +++ b/app/pages/components/step-navigation.wrn @@ -10,10 +10,10 @@ page StepNavigationcomponent {
W WRNexusJS - +
-
layout component

StepNavigation

Reusable step navigation component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StepNavigation
+      
layout component

StepNavigation

Reusable step navigation component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StepNavigation
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page StepNavigationcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/step-up-authentication-dialog.wrn b/app/pages/components/step-up-authentication-dialog.wrn index 82bab40e..ea8c8b2c 100644 --- a/app/pages/components/step-up-authentication-dialog.wrn +++ b/app/pages/components/step-up-authentication-dialog.wrn @@ -10,10 +10,10 @@ page StepUpAuthenticationDialogcomponent {
W WRNexusJS - +
-
overlays component

StepUpAuthenticationDialog

Reusable step up authentication dialog component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StepUpAuthenticationDialog
+      
overlays component

StepUpAuthenticationDialog

Reusable step up authentication dialog component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StepUpAuthenticationDialog
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page StepUpAuthenticationDialogcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/stepper-input.wrn b/app/pages/components/stepper-input.wrn index 382120a5..36e41201 100644 --- a/app/pages/components/stepper-input.wrn +++ b/app/pages/components/stepper-input.wrn @@ -10,10 +10,10 @@ page StepperInputcomponent {
W WRNexusJS - +
-
forms component

StepperInput

Reusable stepper input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StepperInput
+      
forms component

StepperInput

Reusable stepper input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StepperInput
   label="Stepper"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page StepperInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/stepper.wrn b/app/pages/components/stepper.wrn index 22661534..fb2b38ab 100644 --- a/app/pages/components/stepper.wrn +++ b/app/pages/components/stepper.wrn @@ -10,10 +10,10 @@ page Steppercomponent {
W WRNexusJS - +
-
content component

Stepper

Reusable stepper component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Stepper
+      
content component

Stepper

Reusable stepper component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Stepper
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page Steppercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/sticker-picker.wrn b/app/pages/components/sticker-picker.wrn index 0bb3d9ff..156db475 100644 --- a/app/pages/components/sticker-picker.wrn +++ b/app/pages/components/sticker-picker.wrn @@ -10,10 +10,10 @@ page StickerPickercomponent {
W WRNexusJS - +
-
forms component

StickerPicker

Reusable sticker picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StickerPicker
+      
forms component

StickerPicker

Reusable sticker picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StickerPicker
   label="Sticker"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page StickerPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/sticky-layout.wrn b/app/pages/components/sticky-layout.wrn index b5ecf024..809e025e 100644 --- a/app/pages/components/sticky-layout.wrn +++ b/app/pages/components/sticky-layout.wrn @@ -10,10 +10,10 @@ page StickyLayoutcomponent {
W WRNexusJS - +
-
layout component

StickyLayout

Reusable sticky layout component.

@wrnexus/ui 0.2.681 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StickyLayout />

Legacy mount name: data-component="StickyLayout".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/StickyLayout.wrn

component StickyLayout {
+      
layout component

StickyLayout

Reusable sticky layout component.

@wrnexus/ui 0.2.691 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StickyLayout />

Legacy mount name: data-component="StickyLayout".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/StickyLayout.wrn

component StickyLayout {
   props {
     class = ""
   }
@@ -24,7 +24,7 @@ page StickyLayoutcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/sticky.wrn b/app/pages/components/sticky.wrn index f3201b66..084610b2 100644 --- a/app/pages/components/sticky.wrn +++ b/app/pages/components/sticky.wrn @@ -10,10 +10,10 @@ page Stickycomponent {
W WRNexusJS - +
-
core component

Sticky

Reusable sticky component.

@wrnexus/ui 0.2.681 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Sticky />

Legacy mount name: data-component="Sticky".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Sticky.wrn

component Sticky {
+      
core component

Sticky

Reusable sticky component.

@wrnexus/ui 0.2.691 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Sticky />

Legacy mount name: data-component="Sticky".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Sticky.wrn

component Sticky {
   props {
     class = ""
   }
@@ -24,7 +24,7 @@ page Stickycomponent {
     }
 }
 
- + } diff --git a/app/pages/components/street-address-input.wrn b/app/pages/components/street-address-input.wrn index caf2d63f..a8f2572b 100644 --- a/app/pages/components/street-address-input.wrn +++ b/app/pages/components/street-address-input.wrn @@ -10,10 +10,10 @@ page StreetAddressInputcomponent {
W WRNexusJS - +
-
forms component

StreetAddressInput

Reusable street address input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StreetAddressInput
+      
forms component

StreetAddressInput

Reusable street address input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<StreetAddressInput
   label="StreetAddress"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page StreetAddressInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/subdomain-input.wrn b/app/pages/components/subdomain-input.wrn index c7c2952a..de8cc350 100644 --- a/app/pages/components/subdomain-input.wrn +++ b/app/pages/components/subdomain-input.wrn @@ -10,10 +10,10 @@ page SubdomainInputcomponent {
W WRNexusJS - +
-
forms component

SubdomainInput

Reusable subdomain input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SubdomainInput
+      
forms component

SubdomainInput

Reusable subdomain input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SubdomainInput
   label="Subdomain"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page SubdomainInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/subject-input.wrn b/app/pages/components/subject-input.wrn index 5aa2be81..c815848d 100644 --- a/app/pages/components/subject-input.wrn +++ b/app/pages/components/subject-input.wrn @@ -10,10 +10,10 @@ page SubjectInputcomponent {
W WRNexusJS - +
-
forms component

SubjectInput

Reusable subject input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SubjectInput
+      
forms component

SubjectInput

Reusable subject input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SubjectInput
   label="Subject"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page SubjectInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/subprocessor-table.wrn b/app/pages/components/subprocessor-table.wrn index b51ddba7..cee1a864 100644 --- a/app/pages/components/subprocessor-table.wrn +++ b/app/pages/components/subprocessor-table.wrn @@ -10,10 +10,10 @@ page SubprocessorTablecomponent {
W WRNexusJS - +
-
data component

SubprocessorTable

Reusable subprocessor table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SubprocessorTable
+      
data component

SubprocessorTable

Reusable subprocessor table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SubprocessorTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page SubprocessorTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/subsection-heading.wrn b/app/pages/components/subsection-heading.wrn index 5f45a1f9..9414dffb 100644 --- a/app/pages/components/subsection-heading.wrn +++ b/app/pages/components/subsection-heading.wrn @@ -10,10 +10,10 @@ page SubsectionHeadingcomponent {
W WRNexusJS - +
-
core component

SubsectionHeading

Reusable subsection heading component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SubsectionHeading
+      
core component

SubsectionHeading

Reusable subsection heading component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SubsectionHeading
   text="text"
   align="start"
 />

Legacy mount name: data-component="SubsectionHeading".

Props and attributes

PropTypeRequirementDefault
textstringOptional""
alignstringOptional"start"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/SubsectionHeading.wrn

component SubsectionHeading {
@@ -28,7 +28,7 @@ page SubsectionHeadingcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/success-card.wrn b/app/pages/components/success-card.wrn index 403e3e55..61367a56 100644 --- a/app/pages/components/success-card.wrn +++ b/app/pages/components/success-card.wrn @@ -10,10 +10,10 @@ page SuccessCardcomponent {
W WRNexusJS - +
-
content component

SuccessCard

Reusable success card component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SuccessCard
+      
content component

SuccessCard

Reusable success card component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SuccessCard
   title="title"
   description="description"
   href="href"
@@ -36,7 +36,7 @@ page SuccessCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/success-state.wrn b/app/pages/components/success-state.wrn index 6c61fb79..514fd667 100644 --- a/app/pages/components/success-state.wrn +++ b/app/pages/components/success-state.wrn @@ -10,10 +10,10 @@ page SuccessStatecomponent {
W WRNexusJS - +
-
feedback component

SuccessState

Reusable success state component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SuccessState
+      
feedback component

SuccessState

Reusable success state component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SuccessState
   label="Success"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page SuccessStatecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/support-request-form.wrn b/app/pages/components/support-request-form.wrn index 51deb1a1..c5f45244 100644 --- a/app/pages/components/support-request-form.wrn +++ b/app/pages/components/support-request-form.wrn @@ -10,10 +10,10 @@ page SupportRequestFormcomponent {
W WRNexusJS - +
-
content component

SupportRequestForm

Reusable support request form component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SupportRequestForm
+      
content component

SupportRequestForm

Reusable support request form component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<SupportRequestForm
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page SupportRequestFormcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/surface.wrn b/app/pages/components/surface.wrn index d92789ed..14d7125d 100644 --- a/app/pages/components/surface.wrn +++ b/app/pages/components/surface.wrn @@ -10,10 +10,10 @@ page Surfacecomponent {
W WRNexusJS - +
-
core component

Surface

Reusable surface component.

@wrnexus/ui 0.2.681 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Surface />

Legacy mount name: data-component="Surface".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Surface.wrn

component Surface {
+      
core component

Surface

Reusable surface component.

@wrnexus/ui 0.2.691 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Surface />

Legacy mount name: data-component="Surface".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Surface.wrn

component Surface {
   props {
     class = ""
   }
@@ -24,7 +24,7 @@ page Surfacecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/switch.wrn b/app/pages/components/switch.wrn index 84202263..4beae039 100644 --- a/app/pages/components/switch.wrn +++ b/app/pages/components/switch.wrn @@ -10,10 +10,10 @@ page Switchcomponent {
W WRNexusJS - +
-
core component

Switch

Reusable switch component.

@wrnexus/ui 0.2.687 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Switch
+      
core component

Switch

Reusable switch component.

@wrnexus/ui 0.2.697 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Switch
   id="id"
   name="name"
   label="Switch"
@@ -45,7 +45,7 @@ page Switchcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/table-header.wrn b/app/pages/components/table-header.wrn index 13210685..b0f2752f 100644 --- a/app/pages/components/table-header.wrn +++ b/app/pages/components/table-header.wrn @@ -10,10 +10,10 @@ page TableHeadercomponent {
W WRNexusJS - +
-
layout component

TableHeader

Reusable table header component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TableHeader
+      
layout component

TableHeader

Reusable table header component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TableHeader
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page TableHeadercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/table-row.wrn b/app/pages/components/table-row.wrn index 2ae02d3e..0fcbdf02 100644 --- a/app/pages/components/table-row.wrn +++ b/app/pages/components/table-row.wrn @@ -10,10 +10,10 @@ page TableRowcomponent {
W WRNexusJS - +
-
data component

TableRow

Reusable table row component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TableRow
+      
data component

TableRow

Reusable table row component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TableRow
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page TableRowcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/table-skeleton.wrn b/app/pages/components/table-skeleton.wrn index b85804b0..cd6bbd3b 100644 --- a/app/pages/components/table-skeleton.wrn +++ b/app/pages/components/table-skeleton.wrn @@ -10,10 +10,10 @@ page TableSkeletoncomponent {
W WRNexusJS - +
-
feedback component

TableSkeleton

Reusable table skeleton component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TableSkeleton
+      
feedback component

TableSkeleton

Reusable table skeleton component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TableSkeleton
   label="Table"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page TableSkeletoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/table.wrn b/app/pages/components/table.wrn index a8f9ed24..7c578e60 100644 --- a/app/pages/components/table.wrn +++ b/app/pages/components/table.wrn @@ -10,10 +10,10 @@ page Tablecomponent {
W WRNexusJS - +
-
data component

Table

Reusable table component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Table
+      
data component

Table

Reusable table component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Table
   caption="Data table"
   responsive="true"
 />

Legacy mount name: data-component="Table".

Props and attributes

PropTypeRequirementDefault
classstringOptional""
captionstringOptional"Data table"
responsivebooleanOptionaltrue

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Table.wrn

component Table {
@@ -32,7 +32,7 @@ page Tablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/tabs.wrn b/app/pages/components/tabs.wrn index f957c280..089f20ec 100644 --- a/app/pages/components/tabs.wrn +++ b/app/pages/components/tabs.wrn @@ -10,10 +10,10 @@ page Tabscomponent {
W WRNexusJS - +
-
content component

Tabs

Reusable tabs component.

@wrnexus/ui 0.2.682 props2 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Tabs
+      
content component

Tabs

Reusable tabs component.

@wrnexus/ui 0.2.692 props2 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Tabs
   active="first"
 />

Legacy mount name: data-component="Tabs".

Props and attributes

PropTypeRequirementDefault
classstringOptional""
activestringOptional"first"

Slots

  • first
  • second

Events

  • click

Source contract

Installed source: components/Tabs.wrn

component Tabs {
   props {
@@ -37,7 +37,7 @@ page Tabscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/tag-input.wrn b/app/pages/components/tag-input.wrn index 4a684f38..cfb60e12 100644 --- a/app/pages/components/tag-input.wrn +++ b/app/pages/components/tag-input.wrn @@ -10,10 +10,10 @@ page TagInputcomponent {
W WRNexusJS - +
-
forms component

TagInput

Reusable tag input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TagInput
+      
forms component

TagInput

Reusable tag input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TagInput
   label="Tag"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page TagInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/tag.wrn b/app/pages/components/tag.wrn index c46aea79..29698ee4 100644 --- a/app/pages/components/tag.wrn +++ b/app/pages/components/tag.wrn @@ -10,10 +10,10 @@ page tagcomponent {
W WRNexusJS - +
-
core component

tag

Reusable tag component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<tag
+      
core component

tag

Reusable tag component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<tag
   label="label"
   variant="default"
 />

Legacy mount name: data-component="tag".

Props and attributes

PropTypeRequirementDefault
labelstringOptional""
variantstringOptional"default"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/tag.wrn

// Small tag / chip. variant: default | primary | success | danger | warning.
@@ -30,7 +30,7 @@ component Tag {
     }
 }
 
- + } diff --git a/app/pages/components/tax-notice.wrn b/app/pages/components/tax-notice.wrn index 7f338e99..62fad2e7 100644 --- a/app/pages/components/tax-notice.wrn +++ b/app/pages/components/tax-notice.wrn @@ -10,10 +10,10 @@ page TaxNoticecomponent {
W WRNexusJS - +
-
feedback component

TaxNotice

Reusable tax notice component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TaxNotice
+      
feedback component

TaxNotice

Reusable tax notice component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TaxNotice
   label="Tax"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page TaxNoticecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/tax-rate-input.wrn b/app/pages/components/tax-rate-input.wrn index 236190be..534dfb36 100644 --- a/app/pages/components/tax-rate-input.wrn +++ b/app/pages/components/tax-rate-input.wrn @@ -10,10 +10,10 @@ page TaxRateInputcomponent {
W WRNexusJS - +
-
forms component

TaxRateInput

Reusable tax rate input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TaxRateInput
+      
forms component

TaxRateInput

Reusable tax rate input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TaxRateInput
   label="TaxRate"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page TaxRateInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/team-member-card.wrn b/app/pages/components/team-member-card.wrn index 7ed755f1..491c471c 100644 --- a/app/pages/components/team-member-card.wrn +++ b/app/pages/components/team-member-card.wrn @@ -10,10 +10,10 @@ page TeamMemberCardcomponent {
W WRNexusJS - +
-
content component

TeamMemberCard

Reusable team member card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TeamMemberCard
+      
content component

TeamMemberCard

Reusable team member card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TeamMemberCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page TeamMemberCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/team-size-selector.wrn b/app/pages/components/team-size-selector.wrn index c9951e82..ae5374db 100644 --- a/app/pages/components/team-size-selector.wrn +++ b/app/pages/components/team-size-selector.wrn @@ -10,10 +10,10 @@ page TeamSizeSelectorcomponent {
W WRNexusJS - +
-
forms component

TeamSizeSelector

Reusable team size selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TeamSizeSelector
+      
forms component

TeamSizeSelector

Reusable team size selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TeamSizeSelector
   label="TeamSize"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page TeamSizeSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/template-card.wrn b/app/pages/components/template-card.wrn index 4642f74c..af8a8468 100644 --- a/app/pages/components/template-card.wrn +++ b/app/pages/components/template-card.wrn @@ -10,10 +10,10 @@ page TemplateCardcomponent {
W WRNexusJS - +
-
content component

TemplateCard

Reusable template card component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TemplateCard
+      
content component

TemplateCard

Reusable template card component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TemplateCard
   title="title"
   description="description"
   href="href"
@@ -36,7 +36,7 @@ page TemplateCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/template-selector.wrn b/app/pages/components/template-selector.wrn index e8fa272f..c978b801 100644 --- a/app/pages/components/template-selector.wrn +++ b/app/pages/components/template-selector.wrn @@ -10,10 +10,10 @@ page TemplateSelectorcomponent {
W WRNexusJS - +
-
forms component

TemplateSelector

Reusable template selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TemplateSelector
+      
forms component

TemplateSelector

Reusable template selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TemplateSelector
   label="Template"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page TemplateSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/template-variable-input.wrn b/app/pages/components/template-variable-input.wrn index 81d66970..48f1b2d4 100644 --- a/app/pages/components/template-variable-input.wrn +++ b/app/pages/components/template-variable-input.wrn @@ -10,10 +10,10 @@ page TemplateVariableInputcomponent {
W WRNexusJS - +
-
forms component

TemplateVariableInput

Reusable template variable input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TemplateVariableInput
+      
forms component

TemplateVariableInput

Reusable template variable input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TemplateVariableInput
   label="TemplateVariable"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page TemplateVariableInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/tenant-isolation-diagram.wrn b/app/pages/components/tenant-isolation-diagram.wrn index bdd8d9b8..511186aa 100644 --- a/app/pages/components/tenant-isolation-diagram.wrn +++ b/app/pages/components/tenant-isolation-diagram.wrn @@ -10,10 +10,10 @@ page TenantIsolationDiagramcomponent {
W WRNexusJS - +
-
visualization component

TenantIsolationDiagram

Reusable tenant isolation diagram component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TenantIsolationDiagram
+      
visualization component

TenantIsolationDiagram

Reusable tenant isolation diagram component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TenantIsolationDiagram
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page TenantIsolationDiagramcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/terminal-block.wrn b/app/pages/components/terminal-block.wrn index 2f9ddfc4..3dc8247e 100644 --- a/app/pages/components/terminal-block.wrn +++ b/app/pages/components/terminal-block.wrn @@ -10,10 +10,10 @@ page TerminalBlockcomponent {
W WRNexusJS - +
-
content component

TerminalBlock

Reusable terminal block component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TerminalBlock
+      
content component

TerminalBlock

Reusable terminal block component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TerminalBlock
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page TerminalBlockcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/tertiary-button.wrn b/app/pages/components/tertiary-button.wrn index 749105d4..ba77af20 100644 --- a/app/pages/components/tertiary-button.wrn +++ b/app/pages/components/tertiary-button.wrn @@ -10,10 +10,10 @@ page TertiaryButtoncomponent {
W WRNexusJS - +
-
actions component

TertiaryButton

Reusable tertiary button component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TertiaryButton
+      
actions component

TertiaryButton

Reusable tertiary button component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TertiaryButton
   label="Action"
   type="button"
   disabled="false"
@@ -30,7 +30,7 @@ page TertiaryButtoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/test-message-dialog.wrn b/app/pages/components/test-message-dialog.wrn index 84963805..0432277b 100644 --- a/app/pages/components/test-message-dialog.wrn +++ b/app/pages/components/test-message-dialog.wrn @@ -10,10 +10,10 @@ page TestMessageDialogcomponent {
W WRNexusJS - +
-
overlays component

TestMessageDialog

Reusable test message dialog component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TestMessageDialog
+      
overlays component

TestMessageDialog

Reusable test message dialog component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TestMessageDialog
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page TestMessageDialogcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/testimonial-card.wrn b/app/pages/components/testimonial-card.wrn index 4b166b77..ca407384 100644 --- a/app/pages/components/testimonial-card.wrn +++ b/app/pages/components/testimonial-card.wrn @@ -10,10 +10,10 @@ page TestimonialCardcomponent {
W WRNexusJS - +
-
content component

TestimonialCard

Reusable testimonial card component.

@wrnexus/ui 0.2.686 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TestimonialCard
+      
content component

TestimonialCard

Reusable testimonial card component.

@wrnexus/ui 0.2.696 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TestimonialCard
   quote="Great product."
   name="Customer"
   role="role"
@@ -43,7 +43,7 @@ page TestimonialCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/testimonial-carousel.wrn b/app/pages/components/testimonial-carousel.wrn index d71928c2..a769c8cf 100644 --- a/app/pages/components/testimonial-carousel.wrn +++ b/app/pages/components/testimonial-carousel.wrn @@ -10,10 +10,10 @@ page TestimonialCarouselcomponent {
W WRNexusJS - +
-
content component

TestimonialCarousel

Reusable testimonial carousel component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TestimonialCarousel
+      
content component

TestimonialCarousel

Reusable testimonial carousel component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TestimonialCarousel
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page TestimonialCarouselcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/text-input.wrn b/app/pages/components/text-input.wrn index 90208975..e7b9ee4c 100644 --- a/app/pages/components/text-input.wrn +++ b/app/pages/components/text-input.wrn @@ -10,10 +10,10 @@ page TextInputcomponent {
W WRNexusJS - +
-
forms component

TextInput

Reusable text input component.

@wrnexus/ui 0.2.6812 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TextInput
+      
forms component

TextInput

Reusable text input component.

@wrnexus/ui 0.2.6912 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TextInput
   id="id"
   name="name"
   label="Text"
@@ -45,7 +45,7 @@ page TextInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/text-link.wrn b/app/pages/components/text-link.wrn index 595dd6b3..7b7dbcc7 100644 --- a/app/pages/components/text-link.wrn +++ b/app/pages/components/text-link.wrn @@ -10,10 +10,10 @@ page TextLinkcomponent {
W WRNexusJS - +
-
actions component

TextLink

Reusable text link component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TextLink
+      
actions component

TextLink

Reusable text link component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TextLink
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page TextLinkcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/text-skeleton.wrn b/app/pages/components/text-skeleton.wrn index 64ee2569..c3737e7c 100644 --- a/app/pages/components/text-skeleton.wrn +++ b/app/pages/components/text-skeleton.wrn @@ -10,10 +10,10 @@ page TextSkeletoncomponent {
W WRNexusJS - +
-
feedback component

TextSkeleton

Reusable text skeleton component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TextSkeleton
+      
feedback component

TextSkeleton

Reusable text skeleton component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TextSkeleton
   label="Text"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page TextSkeletoncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/textarea.wrn b/app/pages/components/textarea.wrn index 2670bea4..6579b4c8 100644 --- a/app/pages/components/textarea.wrn +++ b/app/pages/components/textarea.wrn @@ -10,10 +10,10 @@ page Textareacomponent {
W WRNexusJS - +
-
core component

Textarea

Reusable textarea component.

@wrnexus/ui 0.2.6811 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Textarea
+      
core component

Textarea

Reusable textarea component.

@wrnexus/ui 0.2.6911 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Textarea
   id="id"
   name="name"
   label="Message"
@@ -44,7 +44,7 @@ page Textareacomponent {
     }
 }
 
- + } diff --git a/app/pages/components/theme-color-picker.wrn b/app/pages/components/theme-color-picker.wrn index fd673526..24bc1935 100644 --- a/app/pages/components/theme-color-picker.wrn +++ b/app/pages/components/theme-color-picker.wrn @@ -10,10 +10,10 @@ page ThemeColorPickercomponent {
W WRNexusJS - +
-
forms component

ThemeColorPicker

Reusable theme color picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ThemeColorPicker
+      
forms component

ThemeColorPicker

Reusable theme color picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ThemeColorPicker
   label="ThemeColor"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page ThemeColorPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/theme-switcher.wrn b/app/pages/components/theme-switcher.wrn index 93be4850..bb7fc15a 100644 --- a/app/pages/components/theme-switcher.wrn +++ b/app/pages/components/theme-switcher.wrn @@ -10,10 +10,10 @@ page ThemeSwitchercomponent {
W WRNexusJS - +
-
content component

ThemeSwitcher

Reusable theme switcher component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ThemeSwitcher
+      
content component

ThemeSwitcher

Reusable theme switcher component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ThemeSwitcher
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ThemeSwitchercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/theme-toggle.wrn b/app/pages/components/theme-toggle.wrn index 1128ec1a..0c9a9b04 100644 --- a/app/pages/components/theme-toggle.wrn +++ b/app/pages/components/theme-toggle.wrn @@ -10,10 +10,10 @@ page themetogglecomponent {
W WRNexusJS - +
-
core component

theme-toggle

Reusable theme-toggle component.

@wrnexus/ui 0.2.682 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<theme-toggle
+      
core component

theme-toggle

Reusable theme-toggle component.

@wrnexus/ui 0.2.692 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<theme-toggle
   label="Toggle theme"
 />

Legacy mount name: data-component="theme-toggle".

Props and attributes

PropTypeRequirementDefault
labelstringOptional"Toggle theme"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/theme-toggle.wrn

// Theme switch button. The framework's theme runtime binds the click
 // (data-wire-theme-toggle), so no component JS is needed.
@@ -29,7 +29,7 @@ component ThemeToggle {
     }
 }
 
- + } diff --git a/app/pages/components/time-input.wrn b/app/pages/components/time-input.wrn index 0c60ebae..eb303492 100644 --- a/app/pages/components/time-input.wrn +++ b/app/pages/components/time-input.wrn @@ -10,10 +10,10 @@ page TimeInputcomponent {
W WRNexusJS - +
-
forms component

TimeInput

Reusable time input component.

@wrnexus/ui 0.2.6812 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TimeInput
+      
forms component

TimeInput

Reusable time input component.

@wrnexus/ui 0.2.6912 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TimeInput
   id="id"
   name="name"
   label="Time"
@@ -45,7 +45,7 @@ page TimeInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/time-picker.wrn b/app/pages/components/time-picker.wrn index b0316fa0..821a52f1 100644 --- a/app/pages/components/time-picker.wrn +++ b/app/pages/components/time-picker.wrn @@ -10,10 +10,10 @@ page TimePickercomponent {
W WRNexusJS - +
-
forms component

TimePicker

Reusable time picker component.

@wrnexus/ui 0.2.6810 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TimePicker
+      
forms component

TimePicker

Reusable time picker component.

@wrnexus/ui 0.2.6910 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TimePicker
   id="time-picker"
   name="time"
   label="Time"
@@ -40,7 +40,7 @@ page TimePickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/time-range-picker.wrn b/app/pages/components/time-range-picker.wrn index 23194021..1e7cace7 100644 --- a/app/pages/components/time-range-picker.wrn +++ b/app/pages/components/time-range-picker.wrn @@ -10,10 +10,10 @@ page TimeRangePickercomponent {
W WRNexusJS - +
-
forms component

TimeRangePicker

Reusable time range picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TimeRangePicker
+      
forms component

TimeRangePicker

Reusable time range picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TimeRangePicker
   label="TimeRange"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page TimeRangePickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/timeline-chart.wrn b/app/pages/components/timeline-chart.wrn index f6fd85b4..bddc859f 100644 --- a/app/pages/components/timeline-chart.wrn +++ b/app/pages/components/timeline-chart.wrn @@ -10,10 +10,10 @@ page TimelineChartcomponent {
W WRNexusJS - +
-
visualization component

TimelineChart

Reusable timeline chart component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TimelineChart
+      
visualization component

TimelineChart

Reusable timeline chart component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TimelineChart
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page TimelineChartcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/timeline-item.wrn b/app/pages/components/timeline-item.wrn index eac3cf90..af42c53d 100644 --- a/app/pages/components/timeline-item.wrn +++ b/app/pages/components/timeline-item.wrn @@ -10,10 +10,10 @@ page TimelineItemcomponent {
W WRNexusJS - +
-
content component

TimelineItem

Reusable timeline item component.

@wrnexus/ui 0.2.685 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TimelineItem
+      
content component

TimelineItem

Reusable timeline item component.

@wrnexus/ui 0.2.695 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TimelineItem
   title="Event"
   date="date"
   description="description"
@@ -39,7 +39,7 @@ page TimelineItemcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/timeline.wrn b/app/pages/components/timeline.wrn index cabf2e23..4d67650b 100644 --- a/app/pages/components/timeline.wrn +++ b/app/pages/components/timeline.wrn @@ -10,10 +10,10 @@ page Timelinecomponent {
W WRNexusJS - +
-
visualization component

Timeline

Reusable timeline component.

@wrnexus/ui 0.2.682 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Timeline
+      
visualization component

Timeline

Reusable timeline component.

@wrnexus/ui 0.2.692 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Timeline
   title="Timeline"
 />

Legacy mount name: data-component="Timeline".

Props and attributes

PropTypeRequirementDefault
classstringOptional""
titlestringOptional"Timeline"

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Timeline.wrn

component Timeline {
   props {
@@ -30,7 +30,7 @@ page Timelinecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/timeout-input.wrn b/app/pages/components/timeout-input.wrn index 04df1cb7..a5302f75 100644 --- a/app/pages/components/timeout-input.wrn +++ b/app/pages/components/timeout-input.wrn @@ -10,10 +10,10 @@ page TimeoutInputcomponent {
W WRNexusJS - +
-
forms component

TimeoutInput

Reusable timeout input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TimeoutInput
+      
forms component

TimeoutInput

Reusable timeout input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TimeoutInput
   label="Timeout"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page TimeoutInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/timezone-aware-time-picker.wrn b/app/pages/components/timezone-aware-time-picker.wrn index 9e918b3c..097f8473 100644 --- a/app/pages/components/timezone-aware-time-picker.wrn +++ b/app/pages/components/timezone-aware-time-picker.wrn @@ -10,10 +10,10 @@ page TimezoneAwareTimePickercomponent {
W WRNexusJS - +
-
forms component

TimezoneAwareTimePicker

Reusable timezone aware time picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TimezoneAwareTimePicker
+      
forms component

TimezoneAwareTimePicker

Reusable timezone aware time picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TimezoneAwareTimePicker
   label="TimezoneAwareTime"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page TimezoneAwareTimePickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/timezone-selector.wrn b/app/pages/components/timezone-selector.wrn index 94f65582..7d166a80 100644 --- a/app/pages/components/timezone-selector.wrn +++ b/app/pages/components/timezone-selector.wrn @@ -10,10 +10,10 @@ page TimezoneSelectorcomponent {
W WRNexusJS - +
-
forms component

TimezoneSelector

Reusable timezone selector component.

@wrnexus/ui 0.2.684 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TimezoneSelector
+      
forms component

TimezoneSelector

Reusable timezone selector component.

@wrnexus/ui 0.2.694 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TimezoneSelector
   id="timezone"
   name="timezone"
   label="Timezone"
@@ -34,7 +34,7 @@ page TimezoneSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/toast-action.wrn b/app/pages/components/toast-action.wrn index 496d7f12..bf6cfc7f 100644 --- a/app/pages/components/toast-action.wrn +++ b/app/pages/components/toast-action.wrn @@ -10,10 +10,10 @@ page ToastActioncomponent {
W WRNexusJS - +
-
actions component

ToastAction

Reusable toast action component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ToastAction
+      
actions component

ToastAction

Reusable toast action component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ToastAction
   label="Action"
   href="href"
   type="button"
@@ -38,7 +38,7 @@ page ToastActioncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/toast-host.wrn b/app/pages/components/toast-host.wrn index 8cc328f6..8520d7ad 100644 --- a/app/pages/components/toast-host.wrn +++ b/app/pages/components/toast-host.wrn @@ -10,10 +10,10 @@ page ToastHostcomponent {
W WRNexusJS - +
-
core component

ToastHost

Reusable toast host component.

@wrnexus/ui 0.2.681 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ToastHost />

Legacy mount name: data-component="ToastHost".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

This component does not declare a slot.

Events

  • click

Source contract

Installed source: components/ToastHost.wrn

component ToastHost {
+      
core component

ToastHost

Reusable toast host component.

@wrnexus/ui 0.2.691 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ToastHost />

Legacy mount name: data-component="ToastHost".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

This component does not declare a slot.

Events

  • click

Source contract

Installed source: components/ToastHost.wrn

component ToastHost {
     props {
         class: string = ""
     }
@@ -219,7 +219,7 @@ page ToastHostcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/toast-icon.wrn b/app/pages/components/toast-icon.wrn index 25f24fd5..58dcc751 100644 --- a/app/pages/components/toast-icon.wrn +++ b/app/pages/components/toast-icon.wrn @@ -10,10 +10,10 @@ page ToastIconcomponent {
W WRNexusJS - +
-
content component

ToastIcon

Reusable toast icon component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ToastIcon
+      
content component

ToastIcon

Reusable toast icon component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ToastIcon
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ToastIconcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/toast-progress.wrn b/app/pages/components/toast-progress.wrn index 253c9739..21d3fb5d 100644 --- a/app/pages/components/toast-progress.wrn +++ b/app/pages/components/toast-progress.wrn @@ -10,10 +10,10 @@ page ToastProgresscomponent {
W WRNexusJS - +
-
visualization component

ToastProgress

Reusable toast progress component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ToastProgress
+      
visualization component

ToastProgress

Reusable toast progress component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ToastProgress
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page ToastProgresscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/toast.wrn b/app/pages/components/toast.wrn index 8ad16dd2..d81d649a 100644 --- a/app/pages/components/toast.wrn +++ b/app/pages/components/toast.wrn @@ -10,10 +10,10 @@ page Toastcomponent {
W WRNexusJS - +
-
core component

Toast

Reusable toast component.

@wrnexus/ui 0.2.685 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Toast
+      
core component

Toast

Reusable toast component.

@wrnexus/ui 0.2.695 props0 slots1 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Toast
   title="Saved"
   description="description"
   variant="success"
@@ -39,7 +39,7 @@ page Toastcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/toggle-group.wrn b/app/pages/components/toggle-group.wrn index 5397462e..aa0460d3 100644 --- a/app/pages/components/toggle-group.wrn +++ b/app/pages/components/toggle-group.wrn @@ -10,10 +10,10 @@ page ToggleGroupcomponent {
W WRNexusJS - +
-
forms component

ToggleGroup

Reusable toggle group component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ToggleGroup
+      
forms component

ToggleGroup

Reusable toggle group component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ToggleGroup
   label="Toggle"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page ToggleGroupcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/toggle.wrn b/app/pages/components/toggle.wrn index 71e1665a..9bdaaff6 100644 --- a/app/pages/components/toggle.wrn +++ b/app/pages/components/toggle.wrn @@ -10,10 +10,10 @@ page Togglecomponent {
W WRNexusJS - +
-
forms component

Toggle

Reusable toggle component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Toggle
+      
forms component

Toggle

Reusable toggle component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Toggle
   label="label"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page Togglecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/token-input.wrn b/app/pages/components/token-input.wrn index 2c28b841..a247e161 100644 --- a/app/pages/components/token-input.wrn +++ b/app/pages/components/token-input.wrn @@ -10,10 +10,10 @@ page TokenInputcomponent {
W WRNexusJS - +
-
forms component

TokenInput

Reusable token input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TokenInput
+      
forms component

TokenInput

Reusable token input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TokenInput
   label="Token"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page TokenInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/tooltip.wrn b/app/pages/components/tooltip.wrn index db3e8497..ac3ecf63 100644 --- a/app/pages/components/tooltip.wrn +++ b/app/pages/components/tooltip.wrn @@ -10,10 +10,10 @@ page Tooltipcomponent {
W WRNexusJS - +
-
content component

Tooltip

Reusable tooltip component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Tooltip
+      
content component

Tooltip

Reusable tooltip component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Tooltip
   text="Helpful information"
   position="top"
 />

Legacy mount name: data-component="Tooltip".

Props and attributes

PropTypeRequirementDefault
classstringOptional""
textstringOptional"Helpful information"
positionstringOptional"top"

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Tooltip.wrn

component Tooltip {
@@ -30,7 +30,7 @@ page Tooltipcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/totp-verification-form.wrn b/app/pages/components/totp-verification-form.wrn index dfbef026..62a6e6b3 100644 --- a/app/pages/components/totp-verification-form.wrn +++ b/app/pages/components/totp-verification-form.wrn @@ -10,10 +10,10 @@ page TotpVerificationFormcomponent {
W WRNexusJS - +
-
content component

TotpVerificationForm

Reusable totp verification form component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TotpVerificationForm
+      
content component

TotpVerificationForm

Reusable totp verification form component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TotpVerificationForm
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page TotpVerificationFormcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/translated-text.wrn b/app/pages/components/translated-text.wrn index c3c97f33..6b09f23b 100644 --- a/app/pages/components/translated-text.wrn +++ b/app/pages/components/translated-text.wrn @@ -10,10 +10,10 @@ page TranslatedTextcomponent {
W WRNexusJS - +
-
content component

TranslatedText

Reusable translated text component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TranslatedText
+      
content component

TranslatedText

Reusable translated text component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TranslatedText
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page TranslatedTextcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/tree-table.wrn b/app/pages/components/tree-table.wrn index 996248ca..7f1e1634 100644 --- a/app/pages/components/tree-table.wrn +++ b/app/pages/components/tree-table.wrn @@ -10,10 +10,10 @@ page TreeTablecomponent {
W WRNexusJS - +
-
data component

TreeTable

Reusable tree table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TreeTable
+      
data component

TreeTable

Reusable tree table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TreeTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page TreeTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/trend-indicator.wrn b/app/pages/components/trend-indicator.wrn index f07da51d..639bdcac 100644 --- a/app/pages/components/trend-indicator.wrn +++ b/app/pages/components/trend-indicator.wrn @@ -10,10 +10,10 @@ page TrendIndicatorcomponent {
W WRNexusJS - +
-
feedback component

TrendIndicator

Reusable trend indicator component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TrendIndicator
+      
feedback component

TrendIndicator

Reusable trend indicator component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TrendIndicator
   label="Trend"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page TrendIndicatorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/truncated-text.wrn b/app/pages/components/truncated-text.wrn index 7317988a..1c4158ce 100644 --- a/app/pages/components/truncated-text.wrn +++ b/app/pages/components/truncated-text.wrn @@ -10,10 +10,10 @@ page TruncatedTextcomponent {
W WRNexusJS - +
-
content component

TruncatedText

Reusable truncated text component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TruncatedText
+      
content component

TruncatedText

Reusable truncated text component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TruncatedText
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page TruncatedTextcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/trust-badge-list.wrn b/app/pages/components/trust-badge-list.wrn index e62559df..9f326d10 100644 --- a/app/pages/components/trust-badge-list.wrn +++ b/app/pages/components/trust-badge-list.wrn @@ -10,10 +10,10 @@ page TrustBadgeListcomponent {
W WRNexusJS - +
-
data component

TrustBadgeList

Reusable trust badge list component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TrustBadgeList
+      
data component

TrustBadgeList

Reusable trust badge list component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<TrustBadgeList
   title="title"
   description="description"
   empty="false"
@@ -36,7 +36,7 @@ page TrustBadgeListcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/typography.wrn b/app/pages/components/typography.wrn index 07328b9c..4c296f87 100644 --- a/app/pages/components/typography.wrn +++ b/app/pages/components/typography.wrn @@ -10,10 +10,10 @@ page Typographycomponent {
W WRNexusJS - +
-
core component

Typography

Reusable typography component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Typography
+      
core component

Typography

Reusable typography component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Typography
   as="p"
   variant="body"
   align="start"
@@ -31,7 +31,7 @@ page Typographycomponent {
     }
 }
 
- + } diff --git a/app/pages/components/unavailable-region-state.wrn b/app/pages/components/unavailable-region-state.wrn index c194fe84..a3236984 100644 --- a/app/pages/components/unavailable-region-state.wrn +++ b/app/pages/components/unavailable-region-state.wrn @@ -10,10 +10,10 @@ page UnavailableRegionStatecomponent {
W WRNexusJS - +
-
feedback component

UnavailableRegionState

Reusable unavailable region state component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UnavailableRegionState
+      
feedback component

UnavailableRegionState

Reusable unavailable region state component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UnavailableRegionState
   label="UnavailableRegion"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page UnavailableRegionStatecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/unified-timeline-preview.wrn b/app/pages/components/unified-timeline-preview.wrn index 79be0968..52a97671 100644 --- a/app/pages/components/unified-timeline-preview.wrn +++ b/app/pages/components/unified-timeline-preview.wrn @@ -10,10 +10,10 @@ page UnifiedTimelinePreviewcomponent {
W WRNexusJS - +
-
content component

UnifiedTimelinePreview

Reusable unified timeline preview component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UnifiedTimelinePreview
+      
content component

UnifiedTimelinePreview

Reusable unified timeline preview component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UnifiedTimelinePreview
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -73,7 +73,7 @@ page UnifiedTimelinePreviewcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/unsaved-changes-dialog.wrn b/app/pages/components/unsaved-changes-dialog.wrn index ba8fbb4d..1af26fc7 100644 --- a/app/pages/components/unsaved-changes-dialog.wrn +++ b/app/pages/components/unsaved-changes-dialog.wrn @@ -10,10 +10,10 @@ page UnsavedChangesDialogcomponent {
W WRNexusJS - +
-
overlays component

UnsavedChangesDialog

Reusable unsaved changes dialog component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UnsavedChangesDialog
+      
overlays component

UnsavedChangesDialog

Reusable unsaved changes dialog component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UnsavedChangesDialog
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page UnsavedChangesDialogcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/upload-item.wrn b/app/pages/components/upload-item.wrn index 26b0bb38..f16decd1 100644 --- a/app/pages/components/upload-item.wrn +++ b/app/pages/components/upload-item.wrn @@ -10,10 +10,10 @@ page UploadItemcomponent {
W WRNexusJS - +
-
content component

UploadItem

Reusable upload item component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UploadItem
+      
content component

UploadItem

Reusable upload item component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UploadItem
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page UploadItemcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/upload-preview.wrn b/app/pages/components/upload-preview.wrn index 0bf83a95..de570595 100644 --- a/app/pages/components/upload-preview.wrn +++ b/app/pages/components/upload-preview.wrn @@ -10,10 +10,10 @@ page UploadPreviewcomponent {
W WRNexusJS - +
-
content component

UploadPreview

Reusable upload preview component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UploadPreview
+      
content component

UploadPreview

Reusable upload preview component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UploadPreview
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page UploadPreviewcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/upload-progress.wrn b/app/pages/components/upload-progress.wrn index ed19c1ab..0f001835 100644 --- a/app/pages/components/upload-progress.wrn +++ b/app/pages/components/upload-progress.wrn @@ -10,10 +10,10 @@ page UploadProgresscomponent {
W WRNexusJS - +
-
visualization component

UploadProgress

Reusable upload progress component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UploadProgress
+      
visualization component

UploadProgress

Reusable upload progress component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UploadProgress
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page UploadProgresscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/uptime-chart.wrn b/app/pages/components/uptime-chart.wrn index 11127fca..d00942a1 100644 --- a/app/pages/components/uptime-chart.wrn +++ b/app/pages/components/uptime-chart.wrn @@ -10,10 +10,10 @@ page UptimeChartcomponent {
W WRNexusJS - +
-
visualization component

UptimeChart

Reusable uptime chart component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UptimeChart
+      
visualization component

UptimeChart

Reusable uptime chart component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UptimeChart
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page UptimeChartcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/uptime-metric.wrn b/app/pages/components/uptime-metric.wrn index 0730eee7..a3659a2e 100644 --- a/app/pages/components/uptime-metric.wrn +++ b/app/pages/components/uptime-metric.wrn @@ -10,10 +10,10 @@ page UptimeMetriccomponent {
W WRNexusJS - +
-
visualization component

UptimeMetric

Reusable uptime metric component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UptimeMetric
+      
visualization component

UptimeMetric

Reusable uptime metric component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UptimeMetric
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page UptimeMetriccomponent {
     }
 }
 
- + } diff --git a/app/pages/components/url-input.wrn b/app/pages/components/url-input.wrn index ad3da321..fd3df2a9 100644 --- a/app/pages/components/url-input.wrn +++ b/app/pages/components/url-input.wrn @@ -10,10 +10,10 @@ page UrlInputcomponent {
W WRNexusJS - +
-
forms component

UrlInput

Reusable url input component.

@wrnexus/ui 0.2.6812 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UrlInput
+      
forms component

UrlInput

Reusable url input component.

@wrnexus/ui 0.2.6912 props0 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UrlInput
   id="id"
   name="name"
   label="Url"
@@ -45,7 +45,7 @@ page UrlInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/usage-pricing-table.wrn b/app/pages/components/usage-pricing-table.wrn index 211fcc7c..a945a1ad 100644 --- a/app/pages/components/usage-pricing-table.wrn +++ b/app/pages/components/usage-pricing-table.wrn @@ -10,10 +10,10 @@ page UsagePricingTablecomponent {
W WRNexusJS - +
-
data component

UsagePricingTable

Reusable usage pricing table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UsagePricingTable
+      
data component

UsagePricingTable

Reusable usage pricing table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UsagePricingTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page UsagePricingTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/use-case-selector.wrn b/app/pages/components/use-case-selector.wrn index ff7814be..0bbe637a 100644 --- a/app/pages/components/use-case-selector.wrn +++ b/app/pages/components/use-case-selector.wrn @@ -10,10 +10,10 @@ page UseCaseSelectorcomponent {
W WRNexusJS - +
-
forms component

UseCaseSelector

Reusable use case selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UseCaseSelector
+      
forms component

UseCaseSelector

Reusable use case selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UseCaseSelector
   label="UseCase"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page UseCaseSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/user-card.wrn b/app/pages/components/user-card.wrn index db5639ae..a12d1643 100644 --- a/app/pages/components/user-card.wrn +++ b/app/pages/components/user-card.wrn @@ -10,10 +10,10 @@ page UserCardcomponent {
W WRNexusJS - +
-
content component

UserCard

Reusable user card component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UserCard
+      
content component

UserCard

Reusable user card component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UserCard
   title="title"
   description="description"
   href="href"
@@ -36,7 +36,7 @@ page UserCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/username-input.wrn b/app/pages/components/username-input.wrn index 6332af81..cda6c2cc 100644 --- a/app/pages/components/username-input.wrn +++ b/app/pages/components/username-input.wrn @@ -10,10 +10,10 @@ page UsernameInputcomponent {
W WRNexusJS - +
-
forms component

UsernameInput

Reusable username input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UsernameInput
+      
forms component

UsernameInput

Reusable username input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<UsernameInput
   label="Username"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page UsernameInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/value-card.wrn b/app/pages/components/value-card.wrn index 1b7582f6..4bf34055 100644 --- a/app/pages/components/value-card.wrn +++ b/app/pages/components/value-card.wrn @@ -10,10 +10,10 @@ page ValueCardcomponent {
W WRNexusJS - +
-
content component

ValueCard

Reusable value card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ValueCard
+      
content component

ValueCard

Reusable value card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ValueCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ValueCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/values-grid.wrn b/app/pages/components/values-grid.wrn index 3dfce4e4..66008ec0 100644 --- a/app/pages/components/values-grid.wrn +++ b/app/pages/components/values-grid.wrn @@ -10,10 +10,10 @@ page ValuesGridcomponent {
W WRNexusJS - +
-
data component

ValuesGrid

Reusable values grid component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ValuesGrid
+      
data component

ValuesGrid

Reusable values grid component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ValuesGrid
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page ValuesGridcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/verification-code-input.wrn b/app/pages/components/verification-code-input.wrn index 0832fa29..856792d1 100644 --- a/app/pages/components/verification-code-input.wrn +++ b/app/pages/components/verification-code-input.wrn @@ -10,10 +10,10 @@ page VerificationCodeInputcomponent {
W WRNexusJS - +
-
forms component

VerificationCodeInput

Reusable verification code input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VerificationCodeInput
+      
forms component

VerificationCodeInput

Reusable verification code input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VerificationCodeInput
   label="VerificationCode"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page VerificationCodeInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/verified-badge.wrn b/app/pages/components/verified-badge.wrn index 7ead6ec9..86a19ef1 100644 --- a/app/pages/components/verified-badge.wrn +++ b/app/pages/components/verified-badge.wrn @@ -10,10 +10,10 @@ page VerifiedBadgecomponent {
W WRNexusJS - +
-
feedback component

VerifiedBadge

Reusable verified badge component.

@wrnexus/ui 0.2.683 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VerifiedBadge
+      
feedback component

VerifiedBadge

Reusable verified badge component.

@wrnexus/ui 0.2.693 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VerifiedBadge
   label="Verified"
   variant="default"
 />

Legacy mount name: data-component="VerifiedBadge".

Props and attributes

PropTypeRequirementDefault
labelstringOptional"Verified"
variantstringOptional"default"
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/VerifiedBadge.wrn

component VerifiedBadge {
@@ -28,7 +28,7 @@ page VerifiedBadgecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/version-selector.wrn b/app/pages/components/version-selector.wrn index 2b33c834..c0f490b5 100644 --- a/app/pages/components/version-selector.wrn +++ b/app/pages/components/version-selector.wrn @@ -10,10 +10,10 @@ page VersionSelectorcomponent {
W WRNexusJS - +
-
forms component

VersionSelector

Reusable version selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VersionSelector
+      
forms component

VersionSelector

Reusable version selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VersionSelector
   label="Version"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page VersionSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/vertical-tabs.wrn b/app/pages/components/vertical-tabs.wrn index d2a5ddfa..8bfa30c3 100644 --- a/app/pages/components/vertical-tabs.wrn +++ b/app/pages/components/vertical-tabs.wrn @@ -10,10 +10,10 @@ page VerticalTabscomponent {
W WRNexusJS - +
-
content component

VerticalTabs

Reusable vertical tabs component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VerticalTabs
+      
content component

VerticalTabs

Reusable vertical tabs component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VerticalTabs
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page VerticalTabscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/video-card.wrn b/app/pages/components/video-card.wrn index 72258aff..81c7be19 100644 --- a/app/pages/components/video-card.wrn +++ b/app/pages/components/video-card.wrn @@ -10,10 +10,10 @@ page VideoCardcomponent {
W WRNexusJS - +
-
content component

VideoCard

Reusable video card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VideoCard
+      
content component

VideoCard

Reusable video card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VideoCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page VideoCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/video-preview-dialog.wrn b/app/pages/components/video-preview-dialog.wrn index a140d01f..76baec15 100644 --- a/app/pages/components/video-preview-dialog.wrn +++ b/app/pages/components/video-preview-dialog.wrn @@ -10,10 +10,10 @@ page VideoPreviewDialogcomponent {
W WRNexusJS - +
-
overlays component

VideoPreviewDialog

Reusable video preview dialog component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VideoPreviewDialog
+      
overlays component

VideoPreviewDialog

Reusable video preview dialog component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VideoPreviewDialog
   title="title"
   description="description"
   open="false"
@@ -40,7 +40,7 @@ page VideoPreviewDialogcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/video-upload.wrn b/app/pages/components/video-upload.wrn index 6ae65bc7..caf056e1 100644 --- a/app/pages/components/video-upload.wrn +++ b/app/pages/components/video-upload.wrn @@ -10,10 +10,10 @@ page VideoUploadcomponent {
W WRNexusJS - +
-
content component

VideoUpload

Reusable video upload component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VideoUpload
+      
content component

VideoUpload

Reusable video upload component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VideoUpload
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page VideoUploadcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/virtualized-table.wrn b/app/pages/components/virtualized-table.wrn index 3d09e1a5..90ec31d8 100644 --- a/app/pages/components/virtualized-table.wrn +++ b/app/pages/components/virtualized-table.wrn @@ -10,10 +10,10 @@ page VirtualizedTablecomponent {
W WRNexusJS - +
-
data component

VirtualizedTable

Reusable virtualized table component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VirtualizedTable
+      
data component

VirtualizedTable

Reusable virtualized table component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VirtualizedTable
   title="title"
   description="description"
   empty="false"
@@ -40,7 +40,7 @@ page VirtualizedTablecomponent {
     }
 }
 
- + } diff --git a/app/pages/components/vision-section.wrn b/app/pages/components/vision-section.wrn index 0cf74c8f..cc42897a 100644 --- a/app/pages/components/vision-section.wrn +++ b/app/pages/components/vision-section.wrn @@ -10,10 +10,10 @@ page VisionSectioncomponent {
W WRNexusJS - +
-
layout component

VisionSection

Reusable vision section component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VisionSection
+      
layout component

VisionSection

Reusable vision section component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VisionSection
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page VisionSectioncomponent {
     }
 }
 
- + } diff --git a/app/pages/components/visually-hidden.wrn b/app/pages/components/visually-hidden.wrn index f5910f1d..014465bd 100644 --- a/app/pages/components/visually-hidden.wrn +++ b/app/pages/components/visually-hidden.wrn @@ -10,10 +10,10 @@ page VisuallyHiddencomponent {
W WRNexusJS - +
-
core component

VisuallyHidden

Reusable visually hidden component.

@wrnexus/ui 0.2.681 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VisuallyHidden />

Legacy mount name: data-component="VisuallyHidden".

Props and attributes

PropTypeRequirementDefault
classNamestringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/VisuallyHidden.wrn

component VisuallyHidden {
+      
core component

VisuallyHidden

Reusable visually hidden component.

@wrnexus/ui 0.2.691 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VisuallyHidden />

Legacy mount name: data-component="VisuallyHidden".

Props and attributes

PropTypeRequirementDefault
classNamestringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/VisuallyHidden.wrn

component VisuallyHidden {
   props {
     className = ""
   }
@@ -24,7 +24,7 @@ page VisuallyHiddencomponent {
     }
 }
 
- + } diff --git a/app/pages/components/voice-script-composer.wrn b/app/pages/components/voice-script-composer.wrn index 4bf9b619..9f9dbc10 100644 --- a/app/pages/components/voice-script-composer.wrn +++ b/app/pages/components/voice-script-composer.wrn @@ -10,10 +10,10 @@ page VoiceScriptComposercomponent {
W WRNexusJS - +
-
content component

VoiceScriptComposer

Reusable voice script composer component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VoiceScriptComposer
+      
content component

VoiceScriptComposer

Reusable voice script composer component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VoiceScriptComposer
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page VoiceScriptComposercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/voice-script-editor.wrn b/app/pages/components/voice-script-editor.wrn index b628bcb4..463ea856 100644 --- a/app/pages/components/voice-script-editor.wrn +++ b/app/pages/components/voice-script-editor.wrn @@ -10,10 +10,10 @@ page VoiceScriptEditorcomponent {
W WRNexusJS - +
-
forms component

VoiceScriptEditor

Reusable voice script editor component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VoiceScriptEditor
+      
forms component

VoiceScriptEditor

Reusable voice script editor component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VoiceScriptEditor
   label="VoiceScript"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page VoiceScriptEditorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/volume-input.wrn b/app/pages/components/volume-input.wrn index a59d67ca..6f5da0b0 100644 --- a/app/pages/components/volume-input.wrn +++ b/app/pages/components/volume-input.wrn @@ -10,10 +10,10 @@ page VolumeInputcomponent {
W WRNexusJS - +
-
forms component

VolumeInput

Reusable volume input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VolumeInput
+      
forms component

VolumeInput

Reusable volume input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VolumeInput
   label="Volume"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page VolumeInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/volume-slider.wrn b/app/pages/components/volume-slider.wrn index 72d46406..b9b02a4e 100644 --- a/app/pages/components/volume-slider.wrn +++ b/app/pages/components/volume-slider.wrn @@ -10,10 +10,10 @@ page VolumeSlidercomponent {
W WRNexusJS - +
-
content component

VolumeSlider

Reusable volume slider component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VolumeSlider
+      
content component

VolumeSlider

Reusable volume slider component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<VolumeSlider
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page VolumeSlidercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/warning-card.wrn b/app/pages/components/warning-card.wrn index 97389fbd..e0c2f0b2 100644 --- a/app/pages/components/warning-card.wrn +++ b/app/pages/components/warning-card.wrn @@ -10,10 +10,10 @@ page WarningCardcomponent {
W WRNexusJS - +
-
content component

WarningCard

Reusable warning card component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WarningCard
+      
content component

WarningCard

Reusable warning card component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WarningCard
   title="title"
   description="description"
   href="href"
@@ -36,7 +36,7 @@ page WarningCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/webhook-event-card.wrn b/app/pages/components/webhook-event-card.wrn index 6e1dd62c..4a37ea58 100644 --- a/app/pages/components/webhook-event-card.wrn +++ b/app/pages/components/webhook-event-card.wrn @@ -10,10 +10,10 @@ page WebhookEventCardcomponent {
W WRNexusJS - +
-
content component

WebhookEventCard

Reusable webhook event card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WebhookEventCard
+      
content component

WebhookEventCard

Reusable webhook event card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WebhookEventCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page WebhookEventCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/webhook-flow-diagram.wrn b/app/pages/components/webhook-flow-diagram.wrn index d795af27..a366d4bd 100644 --- a/app/pages/components/webhook-flow-diagram.wrn +++ b/app/pages/components/webhook-flow-diagram.wrn @@ -10,10 +10,10 @@ page WebhookFlowDiagramcomponent {
W WRNexusJS - +
-
visualization component

WebhookFlowDiagram

Reusable webhook flow diagram component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WebhookFlowDiagram
+      
visualization component

WebhookFlowDiagram

Reusable webhook flow diagram component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WebhookFlowDiagram
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page WebhookFlowDiagramcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/webhook-payload-viewer.wrn b/app/pages/components/webhook-payload-viewer.wrn index d1e7f3d1..54730e62 100644 --- a/app/pages/components/webhook-payload-viewer.wrn +++ b/app/pages/components/webhook-payload-viewer.wrn @@ -10,10 +10,10 @@ page WebhookPayloadViewercomponent {
W WRNexusJS - +
-
content component

WebhookPayloadViewer

Reusable webhook payload viewer component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WebhookPayloadViewer
+      
content component

WebhookPayloadViewer

Reusable webhook payload viewer component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WebhookPayloadViewer
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page WebhookPayloadViewercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/webhook-url-input.wrn b/app/pages/components/webhook-url-input.wrn index cce746b0..b50eafb7 100644 --- a/app/pages/components/webhook-url-input.wrn +++ b/app/pages/components/webhook-url-input.wrn @@ -10,10 +10,10 @@ page WebhookUrlInputcomponent {
W WRNexusJS - +
-
forms component

WebhookUrlInput

Reusable webhook url input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WebhookUrlInput
+      
forms component

WebhookUrlInput

Reusable webhook url input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WebhookUrlInput
   label="WebhookUrl"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page WebhookUrlInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/webinar-card.wrn b/app/pages/components/webinar-card.wrn index 54be0d29..5b68f2cc 100644 --- a/app/pages/components/webinar-card.wrn +++ b/app/pages/components/webinar-card.wrn @@ -10,10 +10,10 @@ page WebinarCardcomponent {
W WRNexusJS - +
-
content component

WebinarCard

Reusable webinar card component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WebinarCard
+      
content component

WebinarCard

Reusable webinar card component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WebinarCard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page WebinarCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/webinar-registration-form.wrn b/app/pages/components/webinar-registration-form.wrn index acbf47a3..13348e23 100644 --- a/app/pages/components/webinar-registration-form.wrn +++ b/app/pages/components/webinar-registration-form.wrn @@ -10,10 +10,10 @@ page WebinarRegistrationFormcomponent {
W WRNexusJS - +
-
content component

WebinarRegistrationForm

Reusable webinar registration form component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WebinarRegistrationForm
+      
content component

WebinarRegistrationForm

Reusable webinar registration form component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WebinarRegistrationForm
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page WebinarRegistrationFormcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/well.wrn b/app/pages/components/well.wrn index 3ec20faf..54a2f79e 100644 --- a/app/pages/components/well.wrn +++ b/app/pages/components/well.wrn @@ -10,10 +10,10 @@ page Wellcomponent {
W WRNexusJS - +
-
core component

Well

Reusable well component.

@wrnexus/ui 0.2.681 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Well />

Legacy mount name: data-component="Well".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Well.wrn

component Well {
+      
core component

Well

Reusable well component.

@wrnexus/ui 0.2.691 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Well />

Legacy mount name: data-component="Well".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/Well.wrn

component Well {
   props {
     class = ""
   }
@@ -24,7 +24,7 @@ page Wellcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/whats-app-composer.wrn b/app/pages/components/whats-app-composer.wrn index a6c7abc0..0643116a 100644 --- a/app/pages/components/whats-app-composer.wrn +++ b/app/pages/components/whats-app-composer.wrn @@ -10,10 +10,10 @@ page WhatsAppComposercomponent {
W WRNexusJS - +
-
content component

WhatsAppComposer

Reusable whats app composer component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WhatsAppComposer
+      
content component

WhatsAppComposer

Reusable whats app composer component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WhatsAppComposer
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page WhatsAppComposercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/whats-app-number-input.wrn b/app/pages/components/whats-app-number-input.wrn index b0e96990..cbaed5bc 100644 --- a/app/pages/components/whats-app-number-input.wrn +++ b/app/pages/components/whats-app-number-input.wrn @@ -10,10 +10,10 @@ page WhatsAppNumberInputcomponent {
W WRNexusJS - +
-
forms component

WhatsAppNumberInput

Reusable whats app number input component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WhatsAppNumberInput
+      
forms component

WhatsAppNumberInput

Reusable whats app number input component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WhatsAppNumberInput
   label="WhatsAppNumber"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page WhatsAppNumberInputcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/whats-app-template-editor.wrn b/app/pages/components/whats-app-template-editor.wrn index ce255116..f4572d36 100644 --- a/app/pages/components/whats-app-template-editor.wrn +++ b/app/pages/components/whats-app-template-editor.wrn @@ -10,10 +10,10 @@ page WhatsAppTemplateEditorcomponent {
W WRNexusJS - +
-
forms component

WhatsAppTemplateEditor

Reusable whats app template editor component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WhatsAppTemplateEditor
+      
forms component

WhatsAppTemplateEditor

Reusable whats app template editor component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WhatsAppTemplateEditor
   label="WhatsAppTemplate"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page WhatsAppTemplateEditorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/wide-container.wrn b/app/pages/components/wide-container.wrn index 0c9a77d1..b1f5852d 100644 --- a/app/pages/components/wide-container.wrn +++ b/app/pages/components/wide-container.wrn @@ -10,10 +10,10 @@ page WideContainercomponent {
W WRNexusJS - +
-
core component

WideContainer

Reusable wide container component.

@wrnexus/ui 0.2.681 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WideContainer />

Legacy mount name: data-component="WideContainer".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/WideContainer.wrn

component WideContainer {
+      
core component

WideContainer

Reusable wide container component.

@wrnexus/ui 0.2.691 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WideContainer />

Legacy mount name: data-component="WideContainer".

Props and attributes

PropTypeRequirementDefault
classstringOptional""

Slots

  • default

Events

This component does not declare a custom event.

Source contract

Installed source: components/WideContainer.wrn

component WideContainer {
   props {
     class = ""
   }
@@ -24,7 +24,7 @@ page WideContainercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/wizard-header.wrn b/app/pages/components/wizard-header.wrn index 8eaa545e..f59a66ed 100644 --- a/app/pages/components/wizard-header.wrn +++ b/app/pages/components/wizard-header.wrn @@ -10,10 +10,10 @@ page WizardHeadercomponent {
W WRNexusJS - +
-
layout component

WizardHeader

Reusable wizard header component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WizardHeader
+      
layout component

WizardHeader

Reusable wizard header component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WizardHeader
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page WizardHeadercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/wizard-navigation.wrn b/app/pages/components/wizard-navigation.wrn index c430a590..a7889474 100644 --- a/app/pages/components/wizard-navigation.wrn +++ b/app/pages/components/wizard-navigation.wrn @@ -10,10 +10,10 @@ page WizardNavigationcomponent {
W WRNexusJS - +
-
layout component

WizardNavigation

Reusable wizard navigation component.

@wrnexus/ui 0.2.685 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WizardNavigation
+      
layout component

WizardNavigation

Reusable wizard navigation component.

@wrnexus/ui 0.2.695 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WizardNavigation
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -38,7 +38,7 @@ page WizardNavigationcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/wizard.wrn b/app/pages/components/wizard.wrn index 66477b2e..c5ac0953 100644 --- a/app/pages/components/wizard.wrn +++ b/app/pages/components/wizard.wrn @@ -10,10 +10,10 @@ page Wizardcomponent {
W WRNexusJS - +
-
content component

Wizard

Reusable wizard component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Wizard
+      
content component

Wizard

Reusable wizard component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<Wizard
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page Wizardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/workflow-canvas-preview.wrn b/app/pages/components/workflow-canvas-preview.wrn index 0a7695db..00adabbc 100644 --- a/app/pages/components/workflow-canvas-preview.wrn +++ b/app/pages/components/workflow-canvas-preview.wrn @@ -10,10 +10,10 @@ page WorkflowCanvasPreviewcomponent {
W WRNexusJS - +
-
content component

WorkflowCanvasPreview

Reusable workflow canvas preview component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WorkflowCanvasPreview
+      
content component

WorkflowCanvasPreview

Reusable workflow canvas preview component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WorkflowCanvasPreview
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -56,7 +56,7 @@ page WorkflowCanvasPreviewcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/workflow-progress.wrn b/app/pages/components/workflow-progress.wrn index 55b44934..2f4e5b49 100644 --- a/app/pages/components/workflow-progress.wrn +++ b/app/pages/components/workflow-progress.wrn @@ -10,10 +10,10 @@ page WorkflowProgresscomponent {
W WRNexusJS - +
-
visualization component

WorkflowProgress

Reusable workflow progress component.

@wrnexus/ui 0.2.686 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WorkflowProgress
+      
visualization component

WorkflowProgress

Reusable workflow progress component.

@wrnexus/ui 0.2.696 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WorkflowProgress
   title="title"
   value="value"
   description="description"
@@ -45,7 +45,7 @@ page WorkflowProgresscomponent {
     }
 }
 
- + } diff --git a/app/pages/components/workspace-card.wrn b/app/pages/components/workspace-card.wrn index e1ec21a7..dfc5d7c1 100644 --- a/app/pages/components/workspace-card.wrn +++ b/app/pages/components/workspace-card.wrn @@ -10,10 +10,10 @@ page WorkspaceCardcomponent {
W WRNexusJS - +
-
content component

WorkspaceCard

Reusable workspace card component.

@wrnexus/ui 0.2.684 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WorkspaceCard
+      
content component

WorkspaceCard

Reusable workspace card component.

@wrnexus/ui 0.2.694 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WorkspaceCard
   title="title"
   description="description"
   href="href"
@@ -36,7 +36,7 @@ page WorkspaceCardcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/workspace-selector.wrn b/app/pages/components/workspace-selector.wrn index 31e8344d..7ea58af6 100644 --- a/app/pages/components/workspace-selector.wrn +++ b/app/pages/components/workspace-selector.wrn @@ -10,10 +10,10 @@ page WorkspaceSelectorcomponent {
W WRNexusJS - +
-
forms component

WorkspaceSelector

Reusable workspace selector component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WorkspaceSelector
+      
forms component

WorkspaceSelector

Reusable workspace selector component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WorkspaceSelector
   label="Workspace"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page WorkspaceSelectorcomponent {
     }
 }
 
- + } diff --git a/app/pages/components/workspace-switcher.wrn b/app/pages/components/workspace-switcher.wrn index 62c2649e..179ea1d9 100644 --- a/app/pages/components/workspace-switcher.wrn +++ b/app/pages/components/workspace-switcher.wrn @@ -10,10 +10,10 @@ page WorkspaceSwitchercomponent {
W WRNexusJS - +
-
content component

WorkspaceSwitcher

Reusable workspace switcher component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WorkspaceSwitcher
+      
content component

WorkspaceSwitcher

Reusable workspace switcher component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<WorkspaceSwitcher
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page WorkspaceSwitchercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/year-picker.wrn b/app/pages/components/year-picker.wrn index 3dedaaaf..ea1ec1ff 100644 --- a/app/pages/components/year-picker.wrn +++ b/app/pages/components/year-picker.wrn @@ -10,10 +10,10 @@ page YearPickercomponent {
W WRNexusJS - +
-
forms component

YearPicker

Reusable year picker component.

@wrnexus/ui 0.2.6811 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<YearPicker
+      
forms component

YearPicker

Reusable year picker component.

@wrnexus/ui 0.2.6911 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<YearPicker
   label="Year"
   name="name"
   value="value"
@@ -45,7 +45,7 @@ page YearPickercomponent {
     }
 }
 
- + } diff --git a/app/pages/components/zoom-slider.wrn b/app/pages/components/zoom-slider.wrn index d91aa521..0d7c7078 100644 --- a/app/pages/components/zoom-slider.wrn +++ b/app/pages/components/zoom-slider.wrn @@ -10,10 +10,10 @@ page ZoomSlidercomponent {
W WRNexusJS - +
-
content component

ZoomSlider

Reusable zoom slider component.

@wrnexus/ui 0.2.688 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ZoomSlider
+      
content component

ZoomSlider

Reusable zoom slider component.

@wrnexus/ui 0.2.698 props1 slots0 events

Usage

Components are auto-discovered. Use the component directly in any .wrn view:

<ZoomSlider
   eyebrow="eyebrow"
   title="title"
   description="description"
@@ -42,7 +42,7 @@ page ZoomSlidercomponent {
     }
 }
 
- + } diff --git a/app/pages/examples.wrn b/app/pages/examples.wrn index 515c9aad..278867b9 100644 --- a/app/pages/examples.wrn +++ b/app/pages/examples.wrn @@ -7,10 +7,10 @@ page Examples { view {
-
W WRNexusJS
+
W WRNexusJS
-

Examples

Examples are tied to installed 0.2.68 package documentation. The focused snippets in guides are source-verified; standalone runnable projects and CI compilation are tracked as remaining work.

Minimal .wrn page

Documented

Database CRUD

Planned fixture

Authentication and protected route

Planned fixture

Permissions

Planned fixture

Forms and validation

Documented

Realtime dashboard

Planned fixture

File upload

Planned fixture

Background queue

Planned fixture

Redis pub/sub

Planned fixture

Workspace gateway

Planned fixture

Deployment

Planned fixture

Experimental mobile mode

Planned fixture
- +

Examples

Examples are tied to installed 0.2.69 package documentation. The focused snippets in guides are source-verified; standalone runnable projects and CI compilation are tracked as remaining work.

Minimal .wrn page

Documented

Database CRUD

Planned fixture

Authentication and protected route

Planned fixture

Permissions

Planned fixture

Forms and validation

Documented

Realtime dashboard

Planned fixture

File upload

Planned fixture

Background queue

Planned fixture

Redis pub/sub

Planned fixture

Workspace gateway

Planned fixture

Deployment

Planned fixture

Experimental mobile mode

Planned fixture
+
} diff --git a/app/pages/getting-started.wrn b/app/pages/getting-started.wrn index b2e1902e..764f4488 100644 --- a/app/pages/getting-started.wrn +++ b/app/pages/getting-started.wrn @@ -7,9 +7,9 @@ page Gettingstarted { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · v0.2.68

Build a contact inbox

This path creates a server-rendered page, validated API route, middleware, and realtime next step. It requires approved registry access and Bun 1.3.x; this site was verified with Bun 1.3.14.

1. Create the project

bunx @wrnexus/cli@0.2.68 create my-app
+      
Preview guide · v0.2.69

Build a contact inbox

This path creates a server-rendered page, validated API route, middleware, and realtime next step. It requires approved registry access and Bun 1.3.x; this site was verified with Bun 1.3.14.

1. Create the project

bunx @wrnexus/cli@0.2.69 create my-app
 cd my-app
 bun install
 bun run dev

2. Know the structure

app/pages/       # file-based .wrn routes
@@ -39,7 +39,7 @@ export const POST = async (ctx) => {
 }

7. Test and ship

bun run test
 bun run build
 bun dist/server.js

Next: deployment, database, authentication, and workspaces.

- +
} diff --git a/app/pages/guides/api-routes.wrn b/app/pages/guides/api-routes.wrn index 2568adde..ed849d9a 100644 --- a/app/pages/guides/api-routes.wrn +++ b/app/pages/guides/api-routes.wrn @@ -7,10 +7,10 @@ page APIroutes { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

API routes

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.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +
Preview guide · 0.2.69

API routes

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.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/guides/authentication.wrn b/app/pages/guides/authentication.wrn index 68becf8a..e74f8fe0 100644 --- a/app/pages/guides/authentication.wrn +++ b/app/pages/guides/authentication.wrn @@ -7,10 +7,10 @@ page Authentication { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

Authentication

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.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +
Preview guide · 0.2.69

Authentication

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.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/guides/authorization.wrn b/app/pages/guides/authorization.wrn index b6218c9b..7d3db292 100644 --- a/app/pages/guides/authorization.wrn +++ b/app/pages/guides/authorization.wrn @@ -7,10 +7,10 @@ page Authorization { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

Authorization

Authentication identifies; authorization decides. Enforce permissions in server routes and policies, including object ownership. UI hiding is never an authorization boundary.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +
Preview guide · 0.2.69

Authorization

Authentication identifies; authorization decides. Enforce permissions in server routes and policies, including object ownership. UI hiding is never an authorization boundary.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/guides/configuration-and-profiles.wrn b/app/pages/guides/configuration-and-profiles.wrn index 38beb38a..483bdbe0 100644 --- a/app/pages/guides/configuration-and-profiles.wrn +++ b/app/pages/guides/configuration-and-profiles.wrn @@ -7,10 +7,10 @@ page Configurationandprofiles { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

Configuration and profiles

wrnexus.config.ts owns styles, SEO, security, data, mobile, fonts, and profiles. Keep secrets in validated environment variables and review merged production configuration.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +
Preview guide · 0.2.69

Configuration and profiles

wrnexus.config.ts owns styles, SEO, security, data, mobile, fonts, and profiles. Keep secrets in validated environment variables and review merged production configuration.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/guides/database.wrn b/app/pages/guides/database.wrn index 13c35a4e..bffcb0f2 100644 --- a/app/pages/guides/database.wrn +++ b/app/pages/guides/database.wrn @@ -7,10 +7,10 @@ page Database { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

Database

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.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +
Preview guide · 0.2.69

Database

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.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/guides/deployment.wrn b/app/pages/guides/deployment.wrn index bf3e7b07..78a71a87 100644 --- a/app/pages/guides/deployment.wrn +++ b/app/pages/guides/deployment.wrn @@ -7,10 +7,10 @@ page Deployment { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

Deployment

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.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +
Preview guide · 0.2.69

Deployment

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.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/guides/forms-and-validation.wrn b/app/pages/guides/forms-and-validation.wrn index d0ef4acf..9f7f8270 100644 --- a/app/pages/guides/forms-and-validation.wrn +++ b/app/pages/guides/forms-and-validation.wrn @@ -7,10 +7,10 @@ page Formsandvalidation { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

Forms and validation

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.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +
Preview guide · 0.2.69

Forms and validation

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.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/guides/i18n-and-themes.wrn b/app/pages/guides/i18n-and-themes.wrn index 7c03dd89..e2fb842d 100644 --- a/app/pages/guides/i18n-and-themes.wrn +++ b/app/pages/guides/i18n-and-themes.wrn @@ -7,10 +7,10 @@ page Internationalizationandthemes { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

Internationalization and themes

Store locale JSON under app/locales and use translation directives. Themes resolve CSS tokens; ensure contrast, system preference behavior, persistence, and non-color cues.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +
Preview guide · 0.2.69

Internationalization and themes

Store locale JSON under app/locales and use translation directives. Themes resolve CSS tokens; ensure contrast, system preference behavior, persistence, and non-color cues.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/guides/middleware.wrn b/app/pages/guides/middleware.wrn index c9549009..03c59741 100644 --- a/app/pages/guides/middleware.wrn +++ b/app/pages/guides/middleware.wrn @@ -7,10 +7,10 @@ page Middleware { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

Middleware

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.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +
Preview guide · 0.2.69

Middleware

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.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/guides/mobile.wrn b/app/pages/guides/mobile.wrn index 7e795898..a4d95d22 100644 --- a/app/pages/guides/mobile.wrn +++ b/app/pages/guides/mobile.wrn @@ -7,10 +7,10 @@ page Mobile { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

Mobile

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.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +
Preview guide · 0.2.69

Mobile

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.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/guides/observability.wrn b/app/pages/guides/observability.wrn index b0f82330..08494607 100644 --- a/app/pages/guides/observability.wrn +++ b/app/pages/guides/observability.wrn @@ -7,10 +7,10 @@ page Observability { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

Observability

Use tracking middleware and sinks with redaction, sampling, stable request identifiers, alert ownership, and retention limits. Never capture registry tokens or session secrets.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +
Preview guide · 0.2.69

Observability

Use tracking middleware and sinks with redaction, sampling, stable request identifiers, alert ownership, and retention limits. Never capture registry tokens or session secrets.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/guides/pages-and-components.wrn b/app/pages/guides/pages-and-components.wrn index 23f7a376..2bdeaa0c 100644 --- a/app/pages/guides/pages-and-components.wrn +++ b/app/pages/guides/pages-and-components.wrn @@ -7,10 +7,10 @@ page Pagesandcomponents { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

Pages and components

Pages are routable, components are reusable, and layouts provide shared slots. Mount a component with data-component and keep browser state scoped and minimal.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +
Preview guide · 0.2.69

Pages and components

Pages are routable, components are reusable, and layouts provide shared slots. Mount a component with data-component and keep browser state scoped and minimal.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/guides/project-structure.wrn b/app/pages/guides/project-structure.wrn index 90399f55..60bcc787 100644 --- a/app/pages/guides/project-structure.wrn +++ b/app/pages/guides/project-structure.wrn @@ -7,10 +7,10 @@ page Projectstructure { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

Project structure

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.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +
Preview guide · 0.2.69

Project structure

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.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/guides/pubsub.wrn b/app/pages/guides/pubsub.wrn index 7cf5b02b..6e78dfe1 100644 --- a/app/pages/guides/pubsub.wrn +++ b/app/pages/guides/pubsub.wrn @@ -7,10 +7,10 @@ page Pubsub { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

Pub/sub

The in-process driver cannot cross processes. Use Redis where instances must share events, define channel ownership, and design for reconnects and duplicate delivery.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +
Preview guide · 0.2.69

Pub/sub

The in-process driver cannot cross processes. Use Redis where instances must share events, define channel ownership, and design for reconnects and duplicate delivery.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/guides/queues.wrn b/app/pages/guides/queues.wrn index 15d9f010..b2ea8dba 100644 --- a/app/pages/guides/queues.wrn +++ b/app/pages/guides/queues.wrn @@ -7,10 +7,10 @@ page Queues { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

Queues

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.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +
Preview guide · 0.2.69

Queues

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.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/guides/realtime.wrn b/app/pages/guides/realtime.wrn index c27c8197..841735aa 100644 --- a/app/pages/guides/realtime.wrn +++ b/app/pages/guides/realtime.wrn @@ -7,10 +7,10 @@ page Realtime { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

Realtime

defineRoom handles connection and messages. Validate message shapes, authorize subscriptions, restrict origins, bound payloads, and use pub/sub to scale across processes.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +
Preview guide · 0.2.69

Realtime

defineRoom handles connection and messages. Validate message shapes, authorize subscriptions, restrict origins, bound payloads, and use pub/sub to scale across processes.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/guides/routing.wrn b/app/pages/guides/routing.wrn index 9939d46b..147b27c4 100644 --- a/app/pages/guides/routing.wrn +++ b/app/pages/guides/routing.wrn @@ -7,10 +7,10 @@ page Routing { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

Routing

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.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +
Preview guide · 0.2.69

Routing

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.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/guides/security.wrn b/app/pages/guides/security.wrn index 6de611ea..2c2a7b69 100644 --- a/app/pages/guides/security.wrn +++ b/app/pages/guides/security.wrn @@ -7,10 +7,10 @@ page Applicationsecurity { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

Application security

Use CSP, CSRF, Trusted Types, session hardening, validation, origin checks, upload restrictions, encryption, request limits, and explicit CORS. See the security policy for reporting.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +
Preview guide · 0.2.69

Application security

Use CSP, CSRF, Trusted Types, session hardening, validation, origin checks, upload restrictions, encryption, request limits, and explicit CORS. See the security policy for reporting.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/guides/server-data.wrn b/app/pages/guides/server-data.wrn index 327ab115..b15caf95 100644 --- a/app/pages/guides/server-data.wrn +++ b/app/pages/guides/server-data.wrn @@ -7,10 +7,10 @@ page Serverdata { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

Server data

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.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +
Preview guide · 0.2.69

Server data

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.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/guides/testing.wrn b/app/pages/guides/testing.wrn index cecd92db..502cc659 100644 --- a/app/pages/guides/testing.wrn +++ b/app/pages/guides/testing.wrn @@ -7,10 +7,10 @@ page Testing { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

Testing

Use Bun tests and @wrnexus/test helpers. Cover server HTML, API status and validation, authorization failures, reactive behavior, and a production startup smoke test.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +
Preview guide · 0.2.69

Testing

Use Bun tests and @wrnexus/test helpers. Cover server HTML, API status and validation, authorization failures, reactive behavior, and a production startup smoke test.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/guides/troubleshooting.wrn b/app/pages/guides/troubleshooting.wrn index 4b011ab7..6e6f17fb 100644 --- a/app/pages/guides/troubleshooting.wrn +++ b/app/pages/guides/troubleshooting.wrn @@ -7,10 +7,10 @@ page Troubleshooting { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

Troubleshooting

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.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +
Preview guide · 0.2.69

Troubleshooting

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.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/guides/upgrading.wrn b/app/pages/guides/upgrading.wrn index 878c9c13..055210b5 100644 --- a/app/pages/guides/upgrading.wrn +++ b/app/pages/guides/upgrading.wrn @@ -7,10 +7,10 @@ page Upgrading { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

Upgrading

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.68.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +
Preview guide · 0.2.69

Upgrading

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.69.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/guides/uploads.wrn b/app/pages/guides/uploads.wrn index 66b67cec..734ab526 100644 --- a/app/pages/guides/uploads.wrn +++ b/app/pages/guides/uploads.wrn @@ -7,10 +7,10 @@ page Uploads { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

Uploads

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.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +
Preview guide · 0.2.69

Uploads

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.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/guides/workspaces-and-gateway.wrn b/app/pages/guides/workspaces-and-gateway.wrn index 742a37b5..7f4ea87e 100644 --- a/app/pages/guides/workspaces-and-gateway.wrn +++ b/app/pages/guides/workspaces-and-gateway.wrn @@ -7,9 +7,9 @@ page Workspacesandgateway { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview guide · 0.2.68

Workspaces and gateway

A workspace runs isolated applications behind one domain-routing gateway. Add an application from the workspace root; the CLI scaffolds apps/reports and registers it in wrnexus.workspace.ts:

wrnexus workspace add reports --domain=reports.localhost
+      
Preview guide · 0.2.69

Workspaces and gateway

A workspace runs isolated applications behind one domain-routing gateway. Add an application from the workspace root; the CLI scaffolds apps/reports and registers it in wrnexus.workspace.ts:

wrnexus workspace add reports --domain=reports.localhost
 bun install
 bun run dev

Forward authentication

Point protected applications at a dedicated verifier endpoint. The verifier must return 2xx for an authenticated session, 401/403 to deny access, or an HTTP redirect to begin browser login.

// wrnexus.workspace.ts
 {
@@ -28,8 +28,8 @@ export const GET = async (ctx: Context) => {
   return redirectToLogin(ctx, "/login", {
     allowedHosts: ["admin.localhost:3000", "reports.localhost:3000"],
   });
-};

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.

Release scope

This guide describes installed 0.2.68 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

- +};

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.

Release scope

This guide describes installed 0.2.69 capabilities. Follow linked package declarations for exact signatures; undocumented behavior is not guaranteed.

Browse package APIs · Troubleshooting · Support

+
} diff --git a/app/pages/index.wrn b/app/pages/index.wrn index 4317effc..55a77570 100644 --- a/app/pages/index.wrn +++ b/app/pages/index.wrn @@ -7,9 +7,9 @@ page Home { view {
-
W WRNexusJS
+
W WRNexusJS
-

WRNexusJS v0.2.68

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.wrn
page Dashboard {
+      

WRNexusJS v0.2.69

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.wrn
page Dashboard {
   ssr { api tasks GET /api/tasks { return tasks } }
   view {
     <main>
@@ -35,10 +35,10 @@ export const POST = async (ctx) => {
   return result.ok ? Response.json({ ok: true }, { status: 201 }) : result.response;
 };

Request lifecycle

  1. RequestSecurity headers and request limits
  2. MiddlewareAuthentication, policy, and context
  3. File routePage or API handler
  4. Compiler + SSRSafe HTML and scoped runtime
  5. ResponseHTML, JSON, stream, or realtime upgrade
-

Production proof

WorkRoot

Public creator/company site and approved WRNexusJS production showcase.

wrnexusjs.dev

This documentation application runs WRNexusJS 0.2.68.

View deployment notes and showcase status →

-

Capability status

CapabilityStatusDetails
SSR, routing, compiler, APIsPreviewInstalled in 0.2.68; public support policy pending.
Mobile/nativeExperimentalCapacitor compatibility and native generation have platform limitations.
Durable queuesExperimentalProduction durability requires an appropriate driver strategy.
+

Production proof

WorkRoot

Public creator/company site and approved WRNexusJS production showcase.

wrnexusjs.dev

This documentation application runs WRNexusJS 0.2.69.

View deployment notes and showcase status →

+

Capability status

CapabilityStatusDetails
SSR, routing, compiler, APIsPreviewInstalled in 0.2.69; public support policy pending.
Mobile/nativeExperimentalCapacitor compatibility and native generation have platform limitations.
Durable queuesExperimentalProduction durability requires an appropriate driver strategy.

Continue exploring

- +
} diff --git a/app/pages/language.wrn b/app/pages/language.wrn index 61e8989f..b56806d2 100644 --- a/app/pages/language.wrn +++ b/app/pages/language.wrn @@ -7,15 +7,15 @@ page Thewrnlanguage { view {
-
W WRNexusJS
+
W WRNexusJS
-
Language reference · 0.2.68

The .wrn language

File anatomy

page Account {
+      
Language reference · 0.2.69

The .wrn language

File anatomy

page Account {
   layout = "public"
   seo { title = "Account" description = "Manage your account." }
   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.
- +
} diff --git a/app/pages/license.wrn b/app/pages/license.wrn index 22a6b324..b4286c19 100644 --- a/app/pages/license.wrn +++ b/app/pages/license.wrn @@ -7,10 +7,10 @@ page License { view {
-
W WRNexusJS
+
W WRNexusJS

License

Owner decision required

This 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.

- +
} diff --git a/app/pages/packages.wrn b/app/pages/packages.wrn index a488b084..ead4b3a2 100644 --- a/app/pages/packages.wrn +++ b/app/pages/packages.wrn @@ -12,10 +12,10 @@ page Packages {
W WRNexusJS - +
-
26 focused packages

Package reference

Everything in the framework, organized by responsibility and documented from the published 0.2.68 APIs.

Showing {category} packages

+
26 focused packages

Package reference

Everything in the framework, organized by responsibility and documented from the published 0.2.69 APIs.

Showing {category} packages

AI

@wrnexus/ai

Server-side Anthropic client with generation and streaming.

Open documentation →
@@ -93,7 +93,7 @@ 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 81c055ee..417a9cb7 100644 --- a/app/pages/packages/ai.wrn +++ b/app/pages/packages/ai.wrn @@ -10,11 +10,11 @@ page wrnexusai {
W WRNexusJS - +
-
AI · Package reference

@wrnexus/ai

Server-side Anthropic client with generation and streaming.

v0.2.68Private registryAI

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/ai@0.2.68

Request preview access. Never put registry tokens in source control.

A tiny, zero-dependency Claude (Anthropic) client for WRNexusJS apps — generate and stream text with Claude from any server-side code.
+
AI · Package reference

@wrnexus/ai

Server-side Anthropic client with generation and streaming.

v0.2.69Private registryAI

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/ai@0.2.69

Request preview access. Never put registry tokens in source control.

A tiny, zero-dependency Claude (Anthropic) client for WRNexusJS apps — generate and stream text with Claude from any server-side code.

Part of the WRNexusJS framework — an SSR-first, Bun-native full-stack web framework.

Overview

@wrnexus/ai is a thin, dependency-free wrapper over the Anthropic Messages API, built on fetch (Bun-native, no SDK). Use it in API routes, jobs, or middleware to call Claude. It defaults to the most capable model, claude-opus-4-8, reads your key from ANTHROPIC_API_KEY, and supports both one-shot generation and streaming.

@@ -201,7 +201,7 @@ export const POST = async (ctx) => { };
- + } diff --git a/app/pages/packages/authz.wrn b/app/pages/packages/authz.wrn index 66141189..cf17ad3a 100644 --- a/app/pages/packages/authz.wrn +++ b/app/pages/packages/authz.wrn @@ -10,11 +10,11 @@ page wrnexusauthz {
W WRNexusJS - +
-
Security · Package reference

@wrnexus/authz

Role, permission, policy, and authorization guards.

v0.2.68Private registrySecurity

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/authz@0.2.68

Request preview access. Never put registry tokens in source control.

Composable authorization for WRNexusJS — role-based (RBAC), policy-based (PBAC), and attribute-based (ABAC) access control that reduces to a boolean check plus an authorize() guard.
+
Security · Package reference

@wrnexus/authz

Role, permission, policy, and authorization guards.

v0.2.69Private registrySecurity

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/authz@0.2.69

Request preview access. Never put registry tokens in source control.

Composable authorization for WRNexusJS — role-based (RBAC), policy-based (PBAC), and attribute-based (ABAC) access control that reduces to a boolean check plus an authorize() guard.

Part of the WRNexusJS framework — an SSR-first, Bun-native full-stack web framework.

Overview

@wrnexus/authz is a small, server-side authorization toolkit. It gives you three interchangeable models — RBAC (roles → permissions), PBAC (policy predicates), and ABAC (attribute matchers) — that all collapse to a boolean | Promise<boolean> decision. Wrap any decision in a Middleware guard (authorize, requireRole, requirePermission) to protect WRNexusJS routes. Reach for it whenever a route or action needs to be gated on who the user is, what roles they hold, or attributes of the user and the resource. It plugs into @wrnexus/core by reading ctx.user as the authorization subject.

@@ -226,7 +226,7 @@ app.put( );
- + } diff --git a/app/pages/packages/cli.wrn b/app/pages/packages/cli.wrn index 5f6b2512..553b3d1c 100644 --- a/app/pages/packages/cli.wrn +++ b/app/pages/packages/cli.wrn @@ -10,11 +10,11 @@ page wrnexuscli {
W WRNexusJS - +
-
Tooling · Package reference

@wrnexus/cli

Create, develop, build, generate, test, and maintain WRNexusJS apps.

v0.2.68Private registryTooling

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/cli@0.2.68

Request preview access. Never put registry tokens in source control.

The wrnexus command-line tool that scaffolds, runs, builds, tests, and manages WRNexusJS apps.
+
Tooling · Package reference

@wrnexus/cli

Create, develop, build, generate, test, and maintain WRNexusJS apps.

v0.2.69Private registryTooling

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/cli@0.2.69

Request preview access. Never put registry tokens in source control.

The wrnexus command-line tool that scaffolds, runs, builds, tests, and manages WRNexusJS apps.

Part of the WRNexusJS framework — an SSR-first, Bun-native full-stack web framework.

Overview

@wrnexus/cli provides the wrnexus executable — the single entry point for developing a WRNexusJS app. It runs the HMR dev server, produces a self-contained production build, scaffolds apps/pages/components, drives database migrations, regenerates typed routes and queries, runs tests, and manages configuration profiles. It also scaffolds multi-app monorepos and serves them behind a domain-routing gateway. This is a CLI/build-time package (it shells out to the Bun binary for the dev child and tests) and it also exports the workspace config types via a subpath.

@@ -153,7 +153,7 @@ wrnexus update --latest wrnexus doctor
- + } diff --git a/app/pages/packages/compiler.wrn b/app/pages/packages/compiler.wrn index ac1221d4..fe6420f1 100644 --- a/app/pages/packages/compiler.wrn +++ b/app/pages/packages/compiler.wrn @@ -10,11 +10,11 @@ page wrnexuscompiler {
W WRNexusJS - +
-
Core · Package reference

@wrnexus/compiler

Parser and code generators for the .wrn language.

v0.2.68Private registryCore

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/compiler@0.2.68

Request preview access. Never put registry tokens in source control.

Compiler for the .wrn language — tokenizes, parses, and lowers .wrn page and component files to TypeScript.
+
Core · Package reference

@wrnexus/compiler

Parser and code generators for the .wrn language.

v0.2.69Private registryCore

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/compiler@0.2.69

Request preview access. Never put registry tokens in source control.

Compiler for the .wrn language — tokenizes, parses, and lowers .wrn page and component files to TypeScript.

Part of the WRNexusJS framework — an SSR-first, Bun-native full-stack web framework.

Overview

@wrnexus/compiler turns .wrn source into TypeScript that targets the framework's runtime primitives. A .wrn file declares either a page (a route) or a component (a reusable, prop-driven fragment) with blocks for state, view (plain HTML), seo, style, functions, api, ssr/client data bindings, and realtime websocket handlers. The pipeline is source → Lexer → parse() → PageAst → generate() → TypeScript. It is a build/server-side library — the WRNexusJS dev loader calls it to compile .wrn files on the fly, surfacing ParseError as a readable error page.

@@ -403,7 +403,7 @@ lx.next(); // { type: "ident", value: "Home", pos: 5 &# lx.next(); // { type: "lbrace", value: "{", pos: 10 }
- + } diff --git a/app/pages/packages/core.wrn b/app/pages/packages/core.wrn index a252c008..0a2bde05 100644 --- a/app/pages/packages/core.wrn +++ b/app/pages/packages/core.wrn @@ -10,11 +10,11 @@ page wrnexuscore {
W WRNexusJS - +
-
Core · Package reference

@wrnexus/core

Contexts, middleware, security, sessions, caching, JSX, and realtime.

v0.2.68Private registryCore

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/core@0.2.68

Request preview access. Never put registry tokens in source control.

The framework core: the request Context, middleware contract, and the security, session, caching, streaming, realtime, and JSX primitives every other WRNexusJS package builds on.
+
Core · Package reference

@wrnexus/core

Contexts, middleware, security, sessions, caching, JSX, and realtime.

v0.2.69Private registryCore

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/core@0.2.69

Request preview access. Never put registry tokens in source control.

The framework core: the request Context, middleware contract, and the security, session, caching, streaming, realtime, and JSX primitives every other WRNexusJS package builds on.

Part of the WRNexusJS framework — an SSR-first, Bun-native full-stack web framework.

Overview

@wrnexus/core is the shared foundation of WRNexusJS. It defines the Context object that flows through every middleware, page, and API route, plus the Middleware/Next contract they implement. On top of that it ships the building blocks a real app needs: cookie-backed sessions, password auth, CSRF protection, rate limiting, request logging, HTTP + in-memory caching, file uploads, streaming/SSE responses, WebSocket "rooms", security headers/CORS, and a server-side JSX runtime that renders to HTML strings. Everything here is server-side and Bun-native (it uses Bun.password, Bun.write, the web-standard Request/Response, and crypto). You depend on it directly and transitively through the rest of the framework.

@@ -989,7 +989,7 @@ const registry = createRealtimeRegistry(); bridgeRealtime(registry, createPubSub(redisDriver(process.env.REDIS_URL)));
- + } diff --git a/app/pages/packages/csr.wrn b/app/pages/packages/csr.wrn index 11b604d0..def0ebd0 100644 --- a/app/pages/packages/csr.wrn +++ b/app/pages/packages/csr.wrn @@ -10,11 +10,11 @@ page wrnexuscsr {
W WRNexusJS - +
-
Frontend · Package reference

@wrnexus/csr

Reactive, navigation, and realtime browser runtimes.

v0.2.68Private registryFrontend

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/csr@0.2.68

Request preview access. Never put registry tokens in source control.

The browser-side client runtime for WRNexusJS — generic, self-contained JS that hydrates server-rendered pages with reactivity, client-side navigation, and realtime rooms.
+
Frontend · Package reference

@wrnexus/csr

Reactive, navigation, and realtime browser runtimes.

v0.2.69Private registryFrontend

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/csr@0.2.69

Request preview access. Never put registry tokens in source control.

The browser-side client runtime for WRNexusJS — generic, self-contained JS that hydrates server-rendered pages with reactivity, client-side navigation, and realtime rooms.

Part of the WRNexusJS framework — an SSR-first, Bun-native full-stack web framework.

Overview

@wrnexus/csr holds the three client runtimes that WRNexusJS serves to the browser. Components are authored as .wrn files and rendered on the server; this package provides the single, generic runtime that hydrates that HTML in the browser — there are no per-component browser bundles. Each runtime is exported as a plain-JS string (no build step, no imports) intended to be served verbatim from a well-known URL:

@@ -251,7 +251,7 @@ room.on("chat", (msg) => console.log(msg.user, msg.text)); room.send({ type: "chat", user: "ada", text: "hi" });
- + } diff --git a/app/pages/packages/db.wrn b/app/pages/packages/db.wrn index 71056db1..dbf20ed2 100644 --- a/app/pages/packages/db.wrn +++ b/app/pages/packages/db.wrn @@ -10,11 +10,11 @@ page wrnexusdb {
W WRNexusJS - +
-
Data · Package reference

@wrnexus/db

Database adapters, typed queries, models, migrations, and sessions.

v0.2.68Private registryData

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/db@0.2.68

Request preview access. Never put registry tokens in source control.

The database layer for WRNexusJS: TS models as the single source of truth for DDL, validation, and result typing, plus a driver-based Db client, migrations, and a sqlc-style query generator.
+
Data · Package reference

@wrnexus/db

Database adapters, typed queries, models, migrations, and sessions.

v0.2.69Private registryData

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/db@0.2.69

Request preview access. Never put registry tokens in source control.

The database layer for WRNexusJS: TS models as the single source of truth for DDL, validation, and result typing, plus a driver-based Db client, migrations, and a sqlc-style query generator.

Part of the WRNexusJS framework — an SSR-first, Bun-native full-stack web framework.

Overview

@wrnexus/db is the server-side data layer. You describe tables as TypeScript models (the v column builder + table()); those models drive migrations, coerce raw DB rows into typed objects, and feed the query generator. A thin Driver interface is implemented by adapters for SQLite (bun:sqlite), Postgres/MySQL (Bun.SQL), and MongoDB. The Db client adds ergonomics — model-mapped all/one, transactions, createTable, pagination, and batched relation loading. A process-wide registry (getDb/setDb) exposes configured connections to pages and API routes. Reach for it whenever a WRNexusJS app needs persistence.

@@ -340,7 +340,7 @@ await repo.insert({ email: "a@b.com" }); const active = await repo.find({ active: true });
- + } diff --git a/app/pages/packages/dev-server.wrn b/app/pages/packages/dev-server.wrn index c8f8a20c..8f801c6e 100644 --- a/app/pages/packages/dev-server.wrn +++ b/app/pages/packages/dev-server.wrn @@ -10,11 +10,11 @@ page wrnexusdevserver {
W WRNexusJS - +
-
Runtime · Package reference

@wrnexus/dev-server

Development and production servers, HMR, assets, and gateways.

v0.2.68Private registryRuntime

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/dev-server@0.2.68

Request preview access. Never put registry tokens in source control.

The WRNexusJS HTTP + WebSocket server runtime — request dispatch, SSR document assembly, live-reload (HMR), and the portable production handler.
+
Runtime · Package reference

@wrnexus/dev-server

Development and production servers, HMR, assets, and gateways.

v0.2.69Private registryRuntime

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/dev-server@0.2.69

Request preview access. Never put registry tokens in source control.

The WRNexusJS HTTP + WebSocket server runtime — request dispatch, SSR document assembly, live-reload (HMR), and the portable production handler.

Part of the WRNexusJS framework — an SSR-first, Bun-native full-stack web framework.

Overview

This package is the server runtime that powers a WRNexusJS app in both development and production. A single request runtime (createHandlers) owns HTTP/WebSocket dispatch and SSR document assembly; it knows nothing about _how_ modules and assets are produced, so the dev and prod entry points wire in different backends: dev uses dynamic module loading plus on-the-fly bundling and injects a live-reload client; prod uses a static, pre-built manifest with cache-immutable assets. The package also ships a multi-app gateway (route several apps by Host header behind one port) and a portable node:http adapter for WinterCG hosts. It is entirely server-side and Bun-native (Bun.serve, Bun.file, Bun.gzipSync).

@@ -695,7 +695,7 @@ await startGateway({ });
- + } diff --git a/app/pages/packages/encryption.wrn b/app/pages/packages/encryption.wrn index 40d22b25..4f2b5e8e 100644 --- a/app/pages/packages/encryption.wrn +++ b/app/pages/packages/encryption.wrn @@ -10,11 +10,11 @@ page wrnexusencryption {
W WRNexusJS - +
-
Security · Package reference

@wrnexus/encryption

Hashing, HMAC, authenticated encryption, and key derivation.

v0.2.68Private registrySecurity

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/encryption@0.2.68

Request preview access. Never put registry tokens in source control.

Dependency-free crypto helpers for WRNexusJS: authenticated symmetric encryption (AES-256-GCM), hashing, and HMAC signing.
+
Security · Package reference

@wrnexus/encryption

Hashing, HMAC, authenticated encryption, and key derivation.

v0.2.69Private registrySecurity

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/encryption@0.2.69

Request preview access. Never put registry tokens in source control.

Dependency-free crypto helpers for WRNexusJS: authenticated symmetric encryption (AES-256-GCM), hashing, and HMAC signing.

Part of the WRNexusJS framework — an SSR-first, Bun-native full-stack web framework.

Overview

This package provides small, focused cryptographic primitives for server-side use: encrypting secrets/tokens/database fields at rest with AES-256-GCM, deriving keys from passwords via PBKDF2, computing SHA-256 digests, and signing/verifying payloads with HMAC-SHA256. It is built entirely on the standard Web Crypto API (crypto.subtle) plus btoa/atob and TextEncoder/TextDecoder — no third-party dependencies. Reach for it whenever you need to protect sensitive values or verify webhook signatures. All functions are async (Web Crypto is promise-based).

@@ -107,7 +107,7 @@ const ok = await hmacVerify(rawBody, webhookSecret, incomingSignatureHeader); if (!ok) throw new Error("Invalid webhook signature");
- + } diff --git a/app/pages/packages/helpers.wrn b/app/pages/packages/helpers.wrn index 403b6135..55acc293 100644 --- a/app/pages/packages/helpers.wrn +++ b/app/pages/packages/helpers.wrn @@ -10,11 +10,11 @@ page wrnexushelpers {
W WRNexusJS - +
-
Tooling · Package reference

@wrnexus/helpers

Safe Context URL helpers and forward-auth login redirects.

v0.2.68Private registryTooling

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/helpers@0.2.68

Request preview access. Never put registry tokens in source control.

Safe convenience helpers for common WRNexusJS application flows. The package uses standard Context, URL, and Response values and has no runtime dependency beyond @wrnexus/core.

+
Tooling · Package reference

@wrnexus/helpers

Safe Context URL helpers and forward-auth login redirects.

v0.2.69Private registryTooling

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/helpers@0.2.69

Request preview access. Never put registry tokens in source control.

Safe convenience helpers for common WRNexusJS application flows. The package uses standard Context, URL, and Response values and has no runtime dependency beyond @wrnexus/core.

bun add @wrnexus/helpers

The package is private, so the machine must be authenticated to the wrnexus npm organization.

Usage

@@ -135,7 +135,7 @@ export const GET = async (ctx: Context) => { };
- + } diff --git a/app/pages/packages/i18n.wrn b/app/pages/packages/i18n.wrn index 35faaf08..4b850c6d 100644 --- a/app/pages/packages/i18n.wrn +++ b/app/pages/packages/i18n.wrn @@ -10,11 +10,11 @@ page wrnexusi18n {
W WRNexusJS - +
-
Frontend · Package reference

@wrnexus/i18n

Translation loading, locale resolution, and Intl formatting.

v0.2.68Private registryFrontend

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/i18n@0.2.68

Request preview access. Never put registry tokens in source control.

Per-request translations plus locale-aware number, date, and currency formatting for WRNexusJS apps.
+
Frontend · Package reference

@wrnexus/i18n

Translation loading, locale resolution, and Intl formatting.

v0.2.69Private registryFrontend

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/i18n@0.2.69

Request preview access. Never put registry tokens in source control.

Per-request translations plus locale-aware number, date, and currency formatting for WRNexusJS apps.

Part of the WRNexusJS framework — an SSR-first, Bun-native full-stack web framework.

Overview

@wrnexus/i18n loads locale files from app/locales/<lang>.json, resolves the active language for each request (cookie → Accept-Language → default), and builds a t(key, params) translator used both in server code and in .wrn views. It also ships Intl-based formatting helpers and a tiny client runtime that wires up a language switcher. Translation lookup, language resolution, and HTML marker rewriting run server-side; only the small I18N_RUNTIME snippet runs in the browser.

@@ -231,7 +231,7 @@ formatRelativeTime(-3, "day", lang); // "3 days ago" plural(2, { one: "# item", other: "# items" }, lang); // "2 items"
- + } diff --git a/app/pages/packages/jwt.wrn b/app/pages/packages/jwt.wrn index fc81de30..79cbff8b 100644 --- a/app/pages/packages/jwt.wrn +++ b/app/pages/packages/jwt.wrn @@ -10,11 +10,11 @@ page wrnexusjwt {
W WRNexusJS - +
-
Security · Package reference

@wrnexus/jwt

HS256 JWT signing, verification, and bearer authentication.

v0.2.68Private registrySecurity

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/jwt@0.2.68

Request preview access. Never put registry tokens in source control.

Dependency-free JSON Web Tokens (HS256) via Web Crypto, plus a bearer-token auth middleware for WRNexusJS.
+
Security · Package reference

@wrnexus/jwt

HS256 JWT signing, verification, and bearer authentication.

v0.2.69Private registrySecurity

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/jwt@0.2.69

Request preview access. Never put registry tokens in source control.

Dependency-free JSON Web Tokens (HS256) via Web Crypto, plus a bearer-token auth middleware for WRNexusJS.

Part of the WRNexusJS framework — an SSR-first, Bun-native full-stack web framework.

Overview

@wrnexus/jwt signs and verifies stateless JSON Web Tokens using the HS256 (HMAC-SHA-256) algorithm. It has no runtime dependencies — signing and verification are implemented directly on the standard Web Crypto API (crypto.subtle), which Bun provides natively. It runs server-side and pairs with the session-based auth in @wrnexus/core, giving you a stateless option for API and mobile clients. Reach for it when you need bearer-token auth rather than cookie sessions.

@@ -164,7 +164,7 @@ app.use(jwtAuth({ secret: process.env.JWT_SECRET! })); app.use(jwtAuth({ secret: process.env.JWT_SECRET!, required: false }));
- + } diff --git a/app/pages/packages/mobile.wrn b/app/pages/packages/mobile.wrn index 109bd644..333f4d87 100644 --- a/app/pages/packages/mobile.wrn +++ b/app/pages/packages/mobile.wrn @@ -10,11 +10,11 @@ page wrnexusmobile {
W WRNexusJS - +
-
Native · Package reference

@wrnexus/mobile

SSR-safe compatibility access to Capacitor plugins.

v0.2.68Private registryNative

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/mobile@0.2.68

Request preview access. Never put registry tokens in source control.

SSR-safe access to Capacitor plugins from WRNexusJS browser code.
+
Native · Package reference

@wrnexus/mobile

SSR-safe compatibility access to Capacitor plugins.

v0.2.69Private registryNative

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/mobile@0.2.69

Request preview access. Never put registry tokens in source control.

SSR-safe access to Capacitor plugins from WRNexusJS browser code.

Overview

@wrnexus/mobile keeps optional native imports out of server rendering while giving browser-owned modules one consistent registry for Capacitor plugins. During SSR, mobile.isNative() is false and mobile.platform() is "web".

Install a plugin through the WRNexusJS CLI so the web and native projects stay aligned:

@@ -131,7 +131,7 @@ const network = mobile.plugin<NetworkPlugin>("Network"); const status = network ? await network.getStatus() : { connected: true, connectionType: "unknown" };
- + } diff --git a/app/pages/packages/native.wrn b/app/pages/packages/native.wrn index 114af048..9b904b54 100644 --- a/app/pages/packages/native.wrn +++ b/app/pages/packages/native.wrn @@ -10,11 +10,11 @@ page wrnexusnative {
W WRNexusJS - +
-
Native · Package reference

@wrnexus/native

Cross-platform browser and Capacitor capability registry.

v0.2.68Private registryNative

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/native@0.2.68

Request preview access. Never put registry tokens in source control.

Cross-platform capabilities for browsers, Capacitor WebViews, and compiled native apps.
+
Native · Package reference

@wrnexus/native

Cross-platform browser and Capacitor capability registry.

v0.2.69Private registryNative

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/native@0.2.69

Request preview access. Never put registry tokens in source control.

Cross-platform capabilities for browsers, Capacitor WebViews, and compiled native apps.

Overview

@wrnexus/native exposes capabilities by name so application code can ask what the current platform supports before presenting an action. Browser capabilities use Web APIs; mobile capabilities use installed Capacitor plugins. platform() returns "server" during SSR, "browser" on the web, and the Capacitor platform in a native WebView.

bun add @wrnexus/native
@@ -123,7 +123,7 @@ const position = await native.run( );
- + } diff --git a/app/pages/packages/oauth.wrn b/app/pages/packages/oauth.wrn index 28ac8ae4..1f314659 100644 --- a/app/pages/packages/oauth.wrn +++ b/app/pages/packages/oauth.wrn @@ -10,11 +10,11 @@ page wrnexusoauth {
W WRNexusJS - +
-
Security · Package reference

@wrnexus/oauth

OAuth 2.0, PKCE, provider presets, and profile mapping.

v0.2.68Private registrySecurity

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/oauth@0.2.68

Request preview access. Never put registry tokens in source control.

Dependency-free OAuth 2.0 sign-in for any provider, with PKCE and presets for Google, GitHub, and Discord.
+
Security · Package reference

@wrnexus/oauth

OAuth 2.0, PKCE, provider presets, and profile mapping.

v0.2.69Private registrySecurity

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/oauth@0.2.69

Request preview access. Never put registry tokens in source control.

Dependency-free OAuth 2.0 sign-in for any provider, with PKCE and presets for Google, GitHub, and Discord.

Part of the WRNexusJS framework — an SSR-first, Bun-native full-stack web framework.

Overview

@wrnexus/oauth implements the OAuth 2.0 Authorization Code flow (with PKCE) for server-side sign-in. It ships ready-made provider presets and a defineProvider helper for custom providers, then gives you two flow functions — startAuth (build the redirect) and completeAuth (exchange the code and fetch the user's profile). It has no runtime dependencies: it uses the platform fetch and WebCrypto only. Pairs naturally with @wrnexus/core's logIn to establish a session once you have a normalized profile.

@@ -286,7 +286,7 @@ const gitlab = defineProvider({ });
- + } diff --git a/app/pages/packages/pubsub.wrn b/app/pages/packages/pubsub.wrn index 1951a7cf..a91fe788 100644 --- a/app/pages/packages/pubsub.wrn +++ b/app/pages/packages/pubsub.wrn @@ -10,11 +10,11 @@ page wrnexuspubsub {
W WRNexusJS - +
-
Realtime · Package reference

@wrnexus/pubsub

In-process and Redis-backed publish/subscribe.

v0.2.68Private registryRealtime

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/pubsub@0.2.68

Request preview access. Never put registry tokens in source control.

Topic-based publish/subscribe with a pluggable driver — in-process by default, Redis for cross-process messaging.
+
Realtime · Package reference

@wrnexus/pubsub

In-process and Redis-backed publish/subscribe.

v0.2.69Private registryRealtime

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/pubsub@0.2.69

Request preview access. Never put registry tokens in source control.

Topic-based publish/subscribe with a pluggable driver — in-process by default, Redis for cross-process messaging.

Part of the WRNexusJS framework — an SSR-first, Bun-native full-stack web framework.

Overview

@wrnexus/pubsub is a small server-side pub/sub bus. You publish messages to a topic and subscribe with topic patterns; handlers fire for matching topics. The default driver keeps everything in-process, and you can swap in the Redis driver (@wrnexus/pubsub/redis) to fan messages out across processes or hosts. It also backs @wrnexus/core's realtime bridge for horizontal scaling.

@@ -146,7 +146,7 @@ await bus.publish("order:created", { id: 7 }); driver.close();
- + } diff --git a/app/pages/packages/queue.wrn b/app/pages/packages/queue.wrn index 0a3487cd..26bb42f5 100644 --- a/app/pages/packages/queue.wrn +++ b/app/pages/packages/queue.wrn @@ -10,11 +10,11 @@ page wrnexusqueue {
W WRNexusJS - +
-
Data · Package reference

@wrnexus/queue

Background jobs with delay, concurrency, retry, and repetition.

v0.2.68Private registryData

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/queue@0.2.68

Request preview access. Never put registry tokens in source control.

A background job queue with delays, retries + exponential backoff, recurring jobs, and concurrent workers.
+
Data · Package reference

@wrnexus/queue

Background jobs with delay, concurrency, retry, and repetition.

v0.2.69Private registryData

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/queue@0.2.69

Request preview access. Never put registry tokens in source control.

A background job queue with delays, retries + exponential backoff, recurring jobs, and concurrent workers.

Part of the WRNexusJS framework — an SSR-first, Bun-native full-stack web framework.

Overview

@wrnexus/queue is a server-side in-process job queue. You register named workers, enqueue jobs (optionally delayed or recurring), and let the queue poll and run them on a timer — with per-job retry limits and doubling backoff between attempts. The default store lives in memory; the design allows a pluggable driver to back it with Redis/SQL for durability across restarts. Reach for it when you need to defer work (emails, webhooks, cleanup) off the request path without a heavyweight external broker. Tests can drive it deterministically via drain().

@@ -189,7 +189,7 @@ clock = 5000; const ran = await queue.drain(); // => 1
- + } diff --git a/app/pages/packages/reactive.wrn b/app/pages/packages/reactive.wrn index de155463..ac1f9053 100644 --- a/app/pages/packages/reactive.wrn +++ b/app/pages/packages/reactive.wrn @@ -10,11 +10,11 @@ page wrnexusreactive {
W WRNexusJS - +
-
Frontend · Package reference

@wrnexus/reactive

Small type-safe reactive signal primitives.

v0.2.68Private registryFrontend

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/reactive@0.2.68

Request preview access. Never put registry tokens in source control.

Tiny, type-safe reactive primitives (signals) with zero dependencies.
+
Frontend · Package reference

@wrnexus/reactive

Small type-safe reactive signal primitives.

v0.2.69Private registryFrontend

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/reactive@0.2.69

Request preview access. Never put registry tokens in source control.

Tiny, type-safe reactive primitives (signals) with zero dependencies.

Part of the WRNexusJS framework — an SSR-first, Bun-native full-stack web framework.

Overview

@wrnexus/reactive is the seed of WRNexusJS's reactivity layer: a minimal signal primitive that holds a value, notifies subscribers when it changes, and hands back an unsubscribe function. It is deliberately small and framework-agnostic — it powers nothing on its own, but is shaped so client islands (and later the .wrn compiler's state blocks) can build reactive bindings on top of it. Reach for it when you need observable state without pulling in a full reactivity library.

@@ -125,7 +125,7 @@ const user: Signal<{ name: string } | null> = signal(null); user.set({ name: "Ada" });
- + } diff --git a/app/pages/packages/router.wrn b/app/pages/packages/router.wrn index 3dadd583..0ccf7284 100644 --- a/app/pages/packages/router.wrn +++ b/app/pages/packages/router.wrn @@ -10,11 +10,11 @@ page wrnexusrouter {
W WRNexusJS - +
-
Core · Package reference

@wrnexus/router

Filesystem discovery, route matching, and typed route generation.

v0.2.68Private registryCore

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/router@0.2.68

Request preview access. Never put registry tokens in source control.

File-based router that maps an app/ directory onto route tables and matches request paths against them.
+
Core · Package reference

@wrnexus/router

Filesystem discovery, route matching, and typed route generation.

v0.2.69Private registryCore

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/router@0.2.69

Request preview access. Never put registry tokens in source control.

File-based router that maps an app/ directory onto route tables and matches request paths against them.

Part of the WRNexusJS framework — an SSR-first, Bun-native full-stack web framework.

Overview

@wrnexus/router scans an application's app/ directory once at startup and builds route tables for pages, API endpoints, realtime channels, middleware, server-rendered .wrn components, layouts, and validation schemas. It also compiles URL patterns (/users/[id]) into RegExps and matches request paths against them. Request input is never turned into a file path, which makes the router immune to path traversal. This is a server-side package used by the WRNexusJS runtime to resolve incoming requests, plus a codegen helper for compile-time typed links.

@@ -249,7 +249,7 @@ const routes = sortRoutes([{ raw: "/posts/[slug]", file: " const m = matchRoute(routes, "/posts/hello"); // { route, params: { slug: "hello" } }
- + } diff --git a/app/pages/packages/ssr.wrn b/app/pages/packages/ssr.wrn index 3697c2fc..6c73c466 100644 --- a/app/pages/packages/ssr.wrn +++ b/app/pages/packages/ssr.wrn @@ -10,11 +10,11 @@ page wrnexusssr {
W WRNexusJS - +
-
Runtime · Package reference

@wrnexus/ssr

Secure HTML document rendering and SEO metadata.

v0.2.68Private registryRuntime

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/ssr@0.2.68

Request preview access. Never put registry tokens in source control.

Server-side rendering: wraps a page's HTML body in a complete HTML document with a metadata-driven <head>.
+
Runtime · Package reference

@wrnexus/ssr

Secure HTML document rendering and SEO metadata.

v0.2.69Private registryRuntime

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/ssr@0.2.69

Request preview access. Never put registry tokens in source control.

Server-side rendering: wraps a page's HTML body in a complete HTML document with a metadata-driven <head>.

Part of the WRNexusJS framework — an SSR-first, Bun-native full-stack web framework.

Overview

Pages in WRNexusJS return an HTML string for the body. @wrnexus/ssr takes that body and produces a full HTML document — building the <head> from page metadata and global SEO defaults, resolving canonical/Open Graph/Twitter tags, and injecting module preloads and <script type="module"> tags. It is deliberately server-only: nothing in this package touches the DOM or ships to the browser, keeping server code genuinely server-only. Reach for it on the server when turning a rendered page body into a response document.

@@ -170,7 +170,7 @@ return new Response(html, { return new Response(html, { headers: { "content-type": "text/html; charset=utf-8" } });
- + } diff --git a/app/pages/packages/styles.wrn b/app/pages/packages/styles.wrn index e7ecff86..ac0561dd 100644 --- a/app/pages/packages/styles.wrn +++ b/app/pages/packages/styles.wrn @@ -10,11 +10,11 @@ page wrnexusstyles {
W WRNexusJS - +
-
Frontend · Package reference

@wrnexus/styles

CSS pipeline, themes, fonts, profiles, and application config.

v0.2.68Private registryFrontend

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/styles@0.2.68

Request preview access. Never put registry tokens in source control.

Global CSS bundling, the --wire-* design-token theme system, and the wrnexus.config.ts app-config loader for WRNexusJS apps.
+
Frontend · Package reference

@wrnexus/styles

CSS pipeline, themes, fonts, profiles, and application config.

v0.2.69Private registryFrontend

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/styles@0.2.69

Request preview access. Never put registry tokens in source control.

Global CSS bundling, the --wire-* design-token theme system, and the wrnexus.config.ts app-config loader for WRNexusJS apps.

Part of the WRNexusJS framework — an SSR-first, Bun-native full-stack web framework.

Overview

This package owns three server-side concerns that shape every page a WRNexusJS app renders:

@@ -615,7 +615,7 @@ const themeJs = renderThemeRuntime(theme); // served at THEME_JS_HREF
- + } diff --git a/app/pages/packages/test.wrn b/app/pages/packages/test.wrn index 55a24dd0..01a0c804 100644 --- a/app/pages/packages/test.wrn +++ b/app/pages/packages/test.wrn @@ -10,11 +10,11 @@ page wrnexustest {
W WRNexusJS - +
-
Tooling · Package reference

@wrnexus/test

WRNexusJS-aware component, route, and browser testing utilities.

v0.2.68Private registryTooling

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/test@0.2.68

Request preview access. Never put registry tokens in source control.

Testing utilities for WRNexusJS apps — component rendering, reactive-DOM mounting, route handler calls, and a full in-process app harness, plus a one-import re-export of bun:test.
+
Tooling · Package reference

@wrnexus/test

WRNexusJS-aware component, route, and browser testing utilities.

v0.2.69Private registryTooling

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/test@0.2.69

Request preview access. Never put registry tokens in source control.

Testing utilities for WRNexusJS apps — component rendering, reactive-DOM mounting, route handler calls, and a full in-process app harness, plus a one-import re-export of bun:test.

Part of the WRNexusJS framework — an SSR-first, Bun-native full-stack web framework.

Overview

@wrnexus/test is the server-side test toolkit you reach for when writing tests for a WRNexusJS app. It runs under bun test (invoked via wrnexus test) and gives you a single import surface: the bun:test primitives (test, expect, mock, …) re-exported alongside WRNexusJS-aware helpers that compile .wrn components, hydrate server HTML in a DOM, invoke API route handlers, and boot the real app on an ephemeral port for integration tests.

@@ -185,7 +185,7 @@ test("health endpoint", async () => { });
- + } diff --git a/app/pages/packages/tracking.wrn b/app/pages/packages/tracking.wrn index 61aa99eb..61192620 100644 --- a/app/pages/packages/tracking.wrn +++ b/app/pages/packages/tracking.wrn @@ -10,11 +10,11 @@ page wrnexustracking {
W WRNexusJS - +
-
Runtime · Package reference

@wrnexus/tracking

Error/event capture, middleware, filtering, and sinks.

v0.2.68Private registryRuntime

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/tracking@0.2.68

Request preview access. Never put registry tokens in source control.

Error tracking for WRNexusJS apps: capture exceptions manually or via middleware and fan them out to pluggable sinks.
+
Runtime · Package reference

@wrnexus/tracking

Error/event capture, middleware, filtering, and sinks.

v0.2.69Private registryRuntime

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/tracking@0.2.69

Request preview access. Never put registry tokens in source control.

Error tracking for WRNexusJS apps: capture exceptions manually or via middleware and fan them out to pluggable sinks.

Part of the WRNexusJS framework — an SSR-first, Bun-native full-stack web framework.

Overview

@wrnexus/tracking is a small, server-side error-capture layer. You create a tracker with one or more sinks, then feed it errors — either manually with tracker.capture(err, context) or automatically by mounting tracker.middleware() in your request pipeline. A consoleSink is included; forwarding to Sentry, Datadog, or any other backend is just a matter of writing a tiny sink. Reach for it when you want a single, sink-agnostic place to route application errors. Sinks run best-effort — a throwing sink never breaks the request.

@@ -163,7 +163,7 @@ const tracker = createTracker({ tracker.addSink(anotherSink); // add more sinks later
- + } diff --git a/app/pages/packages/ui.wrn b/app/pages/packages/ui.wrn index 464daf01..0ec393bd 100644 --- a/app/pages/packages/ui.wrn +++ b/app/pages/packages/ui.wrn @@ -10,11 +10,11 @@ page wrnexusui {
W WRNexusJS - +
-
Frontend · Package reference

@wrnexus/ui

Themeable server-rendered UI components and CSS.

v0.2.68Private registryFrontend

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/ui@0.2.68

Request preview access. Never put registry tokens in source control.

First-party Wire UI component library — a set of themeable .wrn components plus a single tokenized stylesheet.
+
Frontend · Package reference

@wrnexus/ui

Themeable server-rendered UI components and CSS.

v0.2.69Private registryFrontend

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/ui@0.2.69

Request preview access. Never put registry tokens in source control.

First-party Wire UI component library — a set of themeable .wrn components plus a single tokenized stylesheet.

Part of the WRNexusJS framework — an SSR-first, Bun-native full-stack web framework.

Overview

@wrnexus/ui ships a library of server-rendered .wrn components (layout, form controls, and feedback UI) together with one themeable stylesheet, ui.css. The components are auto-discovered by the framework router — you don't import them in code. Once the package's component directory is on the router's scan path, you mount any component in a page with data-component="<name>". Every visual is driven by var(--wire-*) theme tokens, so components restyle instantly when the theme changes. The tiny JS surface (src/index.ts) exists only so the toolchain (CLI build + dev server) can locate the component directory and stylesheet.

@@ -131,7 +131,7 @@ const router = buildRouter(appDir, { componentDirs: [uiComponentsDir()]  </div>

Explore the component library

The component reference now has a dedicated catalog with searchable cards and one complete page per component.

Browse all 901 components →

- + } diff --git a/app/pages/packages/uploader.wrn b/app/pages/packages/uploader.wrn index 86eb78e4..2375814d 100644 --- a/app/pages/packages/uploader.wrn +++ b/app/pages/packages/uploader.wrn @@ -10,11 +10,11 @@ page wrnexusuploader {
W WRNexusJS - +
-
Data · Package reference

@wrnexus/uploader

Validated local/S3 uploads and secure file serving.

v0.2.68Private registryData

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/uploader@0.2.68

Request preview access. Never put registry tokens in source control.

Config-driven file uploads + serving for WRNexusJS. Declare named storage stores (local disk or any S3-compatible backend) in wrnexus.config.ts, upload with one function call, drop a drag-and-drop widget on a page, and serve files back — public or private. Zero external dependencies (S3 is signed with a built-in AWS SigV4 implementation, like the rest of the framework).

+
Data · Package reference

@wrnexus/uploader

Validated local/S3 uploads and secure file serving.

v0.2.69Private registryData

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/uploader@0.2.69

Request preview access. Never put registry tokens in source control.

Config-driven file uploads + serving for WRNexusJS. Declare named storage stores (local disk or any S3-compatible backend) in wrnexus.config.ts, upload with one function call, drop a drag-and-drop widget on a page, and serve files back — public or private. Zero external dependencies (S3 is signed with a built-in AWS SigV4 implementation, like the rest of the framework).

Usage

Configure local and S3 stores

// wrnexus.config.ts
@@ -423,7 +423,7 @@ import { serveFromStore } from "@wrnexus/uploader";
 export const GET = serveFromStore("docs"); // your middleware decides who gets in
- + } diff --git a/app/pages/packages/validation.wrn b/app/pages/packages/validation.wrn index c850aaa9..350fe468 100644 --- a/app/pages/packages/validation.wrn +++ b/app/pages/packages/validation.wrn @@ -10,11 +10,11 @@ page wrnexusvalidation {
W WRNexusJS - +
-
Security · Package reference

@wrnexus/validation

Typed schemas, coercion, validation, and browser descriptors.

v0.2.68Private registrySecurity

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/validation@0.2.68

Request preview access. Never put registry tokens in source control.

One fluent schema, validated on the server (API bodies, env vars) and mirrored to an eval-free browser validator for forms.
+
Security · Package reference

@wrnexus/validation

Typed schemas, coercion, validation, and browser descriptors.

v0.2.69Private registrySecurity

Install the package

After WorkRoot approves private registry access, install the release-aligned package:

bun add @wrnexus/validation@0.2.69

Request preview access. Never put registry tokens in source control.

One fluent schema, validated on the server (API bodies, env vars) and mirrored to an eval-free browser validator for forms.

Part of the WRNexusJS framework — an SSR-first, Bun-native full-stack web framework.

Overview

Define a schema once with the fluent v builder, then reuse it in three places: .parse() runs server-side and returns coerced values plus per-field errors; .describe() emits a plain-JSON SchemaDescriptor that the browser runtime interprets (no eval, no bundled validator); and helpers like parseBody and parseEnv wire schemas straight into API routes and startup config. The server rule logic (applyRule/checkField) and the client runtime (VALIDATE_RUNTIME) mirror each other exactly, so a form validates identically in both places. Schemas are conventionally kept in app/schemas/.

@@ -343,7 +343,7 @@ const head = `<script>${renderSchemasScript({ signup: signupSche // render a <form data-schema="signup"> with [data-error="email"] etc.
- + } diff --git a/app/pages/releases/0.2.69.wrn b/app/pages/releases/0.2.69.wrn new file mode 100644 index 00000000..90abde39 --- /dev/null +++ b/app/pages/releases/0.2.69.wrn @@ -0,0 +1,17 @@ +page Release0269 { + seo { + title = "Release 0.2.69" + description = "WRNexusJS 0.2.69 release notes." + canonical = "https://wrnexusjs.dev/releases/0.2.69" + } + view { + +
+
W WRNexusJS
+ +

WRNexusJS 0.2.69

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.

+ + +
+ } +} \ No newline at end of file diff --git a/app/pages/roadmap.wrn b/app/pages/roadmap.wrn index 429b3835..b1ce961f 100644 --- a/app/pages/roadmap.wrn +++ b/app/pages/roadmap.wrn @@ -7,10 +7,10 @@ page Roadmap { view {
-
W WRNexusJS
+
W WRNexusJS

Roadmap

Roadmap items are direction, not delivery commitments. Dates require explicit owner approval.

Now

  • Private preview onboarding and accurate package references
  • Runnable documentation fixtures and link/accessibility checks
  • License, support, and disclosure owner decisions

Next

  • Durable queue driver guidance
  • Expanded database/auth/realtime examples
  • Versioned release notes and migration fixtures

Later / exploration

  • Historical documentation selector
  • Maintained reproducible benchmarks
  • Broader mobile/native coverage
- +
} diff --git a/app/pages/search.wrn b/app/pages/search.wrn index e6d4441e..850daac7 100644 --- a/app/pages/search.wrn +++ b/app/pages/search.wrn @@ -7,10 +7,10 @@ page Search { view {
-
W WRNexusJS
+
W WRNexusJS

Search documentation

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.

Core documentation

Get started · Packages · Components · Language · Architecture

Guides

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

Package APIs

@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

- +
} diff --git a/app/pages/security.wrn b/app/pages/security.wrn index 60f90646..e11a315a 100644 --- a/app/pages/security.wrn +++ b/app/pages/security.wrn @@ -7,10 +7,10 @@ page Security { view {
-
W WRNexusJS
+
W WRNexusJS
-

Security

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.

Supported releases

Only the current private-preview release 0.2.68 is documented here. A formal old-release support window is not yet published.

Report a vulnerability

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.

Deployment controls

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.

- +

Security

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.

Supported releases

Only the current private-preview release 0.2.69 is documented here. A formal old-release support window is not yet published.

Report a vulnerability

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.

Deployment controls

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.

+
} diff --git a/app/pages/showcase.wrn b/app/pages/showcase.wrn index 12000bc6..eb871276 100644 --- a/app/pages/showcase.wrn +++ b/app/pages/showcase.wrn @@ -7,10 +7,10 @@ page Showcase { view {
-
W WRNexusJS
+
W WRNexusJS
-

Showcase

Only confirmed public properties are listed; no customer or traffic claims are made.

WorkRoot

Creator/company site demonstrating a public WRNexusJS deployment. Exact deployed version and infrastructure notes await owner confirmation.

WRNexusJS docs

This documentation portal, built and verified against WRNexusJS 0.2.68 on Bun.

Screenshots are intentionally deferred until approved assets and alt text are available.

- +

Showcase

Only confirmed public properties are listed; no customer or traffic claims are made.

WorkRoot

Creator/company site demonstrating a public WRNexusJS deployment. Exact deployed version and infrastructure notes await owner confirmation.

WRNexusJS docs

This documentation portal, built and verified against WRNexusJS 0.2.69 on Bun.

Screenshots are intentionally deferred until approved assets and alt text are available.

+
} diff --git a/app/pages/support.wrn b/app/pages/support.wrn index 386a6aa9..3fc70dea 100644 --- a/app/pages/support.wrn +++ b/app/pages/support.wrn @@ -7,10 +7,10 @@ page Support { view {
-
W WRNexusJS
+
W WRNexusJS

Support

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.

- +
} diff --git a/app/pages/tutorial.wrn b/app/pages/tutorial.wrn index 11dd8476..00efdcac 100644 --- a/app/pages/tutorial.wrn +++ b/app/pages/tutorial.wrn @@ -7,9 +7,9 @@ page Tutorial { view {
-
W WRNexusJS
+
W WRNexusJS
-
Preview · runnable-project extraction pending

Secure task board

This tutorial connects the installed 0.2.68 APIs into one design. Snippets are limited to declarations and README patterns verified in the installed packages; a CI-compiled standalone fixture remains on the roadmap.

Application shape

A .wrn page renders tasks from an SSR API binding. A shared validation schema protects mutations. Session middleware identifies users, authorization policies gate updates, and a realtime room broadcasts changes.

Schema and create route

import { v, parseBody } from "@wrnexus/validation";
+      
Preview · runnable-project extraction pending

Secure task board

This tutorial connects the installed 0.2.69 APIs into one design. Snippets are limited to declarations and README patterns verified in the installed packages; a CI-compiled standalone fixture remains on the roadmap.

Application shape

A .wrn page renders tasks from an SSR API binding. A shared validation schema protects mutations. Session middleware identifies users, authorization policies gate updates, and a realtime room broadcasts changes.

Schema and create route

import { v, parseBody } from "@wrnexus/validation";
 const task = v.object({ title: v.string().trim().min(3).max(120) });
 export const POST = async (ctx) => {
   const parsed = await parseBody(task, ctx.req);
@@ -23,7 +23,7 @@ export const POST = async (ctx) => {
     </ul></main>
   }
 }

Production checklist

  • Choose SQLite for local development or configure the supported PostgreSQL driver.
  • Run migrations before accepting traffic.
  • Enable session authentication and enforce authorization on every mutation.
  • Validate upload types and sizes; keep private objects behind authenticated routes.
  • Use Redis pub/sub when realtime rooms span processes.
  • Treat the default queue as non-durable until a production driver is selected.

Follow the focused database, authentication, authorization, realtime, and upload guides.

- +
} diff --git a/bun.lock b/bun.lock index 3ba5bf75..c2d831db 100644 --- a/bun.lock +++ b/bun.lock @@ -7,38 +7,38 @@ "dependencies": { "@iconify-json/lucide": "^1.2.118", "@iconify/tailwind4": "^1.2.3", - "@wrnexus/ai": "^0.2.68", - "@wrnexus/authz": "^0.2.68", - "@wrnexus/compiler": "^0.2.68", - "@wrnexus/core": "^0.2.68", - "@wrnexus/csr": "^0.2.68", - "@wrnexus/db": "^0.2.68", - "@wrnexus/dev-server": "^0.2.68", - "@wrnexus/encryption": "^0.2.68", - "@wrnexus/helpers": "^0.2.68", - "@wrnexus/i18n": "^0.2.68", - "@wrnexus/jwt": "^0.2.68", - "@wrnexus/mobile": "^0.2.68", - "@wrnexus/native": "^0.2.68", - "@wrnexus/oauth": "^0.2.68", - "@wrnexus/pubsub": "^0.2.68", - "@wrnexus/queue": "^0.2.68", - "@wrnexus/reactive": "^0.2.68", - "@wrnexus/router": "^0.2.68", - "@wrnexus/ssr": "^0.2.68", - "@wrnexus/styles": "^0.2.68", - "@wrnexus/test": "^0.2.68", - "@wrnexus/tracking": "^0.2.68", - "@wrnexus/ui": "^0.2.68", - "@wrnexus/uploader": "^0.2.68", - "@wrnexus/validation": "^0.2.68", + "@wrnexus/ai": "^0.2.69", + "@wrnexus/authz": "^0.2.69", + "@wrnexus/compiler": "^0.2.69", + "@wrnexus/core": "^0.2.69", + "@wrnexus/csr": "^0.2.69", + "@wrnexus/db": "^0.2.69", + "@wrnexus/dev-server": "^0.2.69", + "@wrnexus/encryption": "^0.2.69", + "@wrnexus/helpers": "^0.2.69", + "@wrnexus/i18n": "^0.2.69", + "@wrnexus/jwt": "^0.2.69", + "@wrnexus/mobile": "^0.2.69", + "@wrnexus/native": "^0.2.69", + "@wrnexus/oauth": "^0.2.69", + "@wrnexus/pubsub": "^0.2.69", + "@wrnexus/queue": "^0.2.69", + "@wrnexus/reactive": "^0.2.69", + "@wrnexus/router": "^0.2.69", + "@wrnexus/ssr": "^0.2.69", + "@wrnexus/styles": "^0.2.69", + "@wrnexus/test": "^0.2.69", + "@wrnexus/tracking": "^0.2.69", + "@wrnexus/ui": "^0.2.69", + "@wrnexus/uploader": "^0.2.69", + "@wrnexus/validation": "^0.2.69", }, "devDependencies": { "@eslint/js": "^9.0.0", "@tailwindcss/cli": "^4.0.0", "@types/bun": "latest", "@types/node": "^26.1.1", - "@wrnexus/cli": "^0.2.68", + "@wrnexus/cli": "^0.2.69", "eslint": "^9.0.0", "prettier": "latest", "tailwindcss": "^4.0.0", @@ -186,57 +186,57 @@ "@typescript-eslint/visitor-keys": ["@typescript-eslint/visitor-keys@8.63.0", "", { "dependencies": { "@typescript-eslint/types": "8.63.0", "eslint-visitor-keys": "^5.0.0" } }, "sha512-UexrHGnGTpbuQHct2ExOc2ZcFbGUS9FOesCxxqdBGcpI1BxYu/LZ6U8Aq6/72XtF/qRBk9nhuGHFJIXXMhPMdw=="], - "@wrnexus/ai": ["@wrnexus/ai@0.2.68", "", {}, "sha512-S8kblYSOpDCnGvSmrRmK+3MRQ2r+2Ys/0RA6Nx6wqUpsf4IL7T3++EKls1W2U35ruU4sFLpQBMowXJj1p4dcfg=="], + "@wrnexus/ai": ["@wrnexus/ai@0.2.69", "", {}, "sha512-o+K6NO5ijBTxfThMfYhZvbebB5pudbQe7uYUlLdBxTHImd0ae2Un7Gmm6pwNg11uq+UIKX9plykIqhK6MpI4cQ=="], - "@wrnexus/authz": ["@wrnexus/authz@0.2.68", "", {}, "sha512-WClo+4QEtiVx6ueNNZ+m5B7jLP24H/fYzA2lLwL8yLsgDQhabwakmq6/8fwft8VeQ6Zfj6E9TjIkLJn1XH1U0A=="], + "@wrnexus/authz": ["@wrnexus/authz@0.2.69", "", {}, "sha512-JMR189W7zgQPU6oc1TLWMoaNeABQBiwa/3G4FAljejNcTM7YFMua8FxlQ0RTOz3e5t1Y6Ubbfhdqz3aSzyAWqQ=="], - "@wrnexus/cli": ["@wrnexus/cli@0.2.68", "", { "dependencies": { "@wrnexus/compiler": "^0.2.68", "@wrnexus/core": "^0.2.68", "@wrnexus/csr": "^0.2.68", "@wrnexus/db": "^0.2.68", "@wrnexus/dev-server": "^0.2.68", "@wrnexus/i18n": "^0.2.68", "@wrnexus/router": "^0.2.68", "@wrnexus/styles": "^0.2.68", "@wrnexus/ui": "^0.2.68", "@wrnexus/validation": "^0.2.68" }, "bin": { "wrnexus": "dist/index.js" } }, "sha512-ECYJgQpUJUHHhgNPS6ti8fLAfViXTZe5Q0G0qoYXBYkQ+VuPBcq/STT1NZGj8mtgtYy6B0arRNtWpem7KaVD6g=="], + "@wrnexus/cli": ["@wrnexus/cli@0.2.69", "", { "dependencies": { "@wrnexus/compiler": "^0.2.69", "@wrnexus/core": "^0.2.69", "@wrnexus/csr": "^0.2.69", "@wrnexus/db": "^0.2.69", "@wrnexus/dev-server": "^0.2.69", "@wrnexus/i18n": "^0.2.69", "@wrnexus/router": "^0.2.69", "@wrnexus/styles": "^0.2.69", "@wrnexus/ui": "^0.2.69", "@wrnexus/validation": "^0.2.69" }, "bin": { "wrnexus": "dist/index.js" } }, "sha512-tTl58kdaMLablM4JkUksJRxB9rZvzhbJC4E2DANX+vh2EqtOIqdhzwkiufOyTMggoNX3nJP8Xx7OMmR3QonyBw=="], - "@wrnexus/compiler": ["@wrnexus/compiler@0.2.68", "", {}, "sha512-hog2ju5KKpaKEDb66Mzv+QdGA2oydkHop188jJTBv8kP+7yWyYL/XSOh/cmpmliRk5QAmbowJuVyCSjNBRHsMw=="], + "@wrnexus/compiler": ["@wrnexus/compiler@0.2.69", "", {}, "sha512-mORfyfbXUHWLZMZ3MPt50nxv93saiEdtj0ICy0Jxcz9vxAGpmzgYRh3bF/BKpG8jRuNpYxadsE9dOGstLRZUuQ=="], - "@wrnexus/core": ["@wrnexus/core@0.2.68", "", {}, "sha512-HsZ1DCwEPP3sdop+RGY9JWFtzqPvzIQYydDq8FMr5GGjj+bpEBQUcpQzgfj7Rb3Uik/GUVTZcZPqpgvVEfwl4Q=="], + "@wrnexus/core": ["@wrnexus/core@0.2.69", "", {}, "sha512-oLg3iBgNquuAZvwVZI7YLQnluAEOQI7vic2QRYJyxmFl6ACLvIxRJk+OMDrSXCQmg1KXPuAf2fPY3Zd73/Sf4w=="], - "@wrnexus/csr": ["@wrnexus/csr@0.2.68", "", { "dependencies": { "@wrnexus/core": "^0.2.68" } }, "sha512-wPJVkcOfgJswBs7JxSV2OU4xRnqc6rQ26Op3OZTM5kV2NjC8ocLKoIO7nWB45JQQMjG/NeU2cMa1GO7uj7xoOQ=="], + "@wrnexus/csr": ["@wrnexus/csr@0.2.69", "", { "dependencies": { "@wrnexus/core": "^0.2.69" } }, "sha512-oBY3fccpN0fVcI3D+6eFHj8djKZ4xJffFyldDJ0DCXfR8U3bVimmcIJK0jDCx0+2lhrNovXVWlZkxfTDfHh/NQ=="], - "@wrnexus/db": ["@wrnexus/db@0.2.68", "", {}, "sha512-pvm9h/aa6xqgr+xdgZ0ShRJWX06vdft2RgZ8MZ41VWDu7BcFiNPS49SR/elTK8uwj/P2djb3qFi8ekHWRVsRJA=="], + "@wrnexus/db": ["@wrnexus/db@0.2.69", "", {}, "sha512-LXRlNcfp1eLomf/et9Mn1+8d79LDqnrMiIx6UBiKS8UPUi4dzbI/JoZ3Fyu8BKsMst7xr0LtbXTRkgshATu4mg=="], - "@wrnexus/dev-server": ["@wrnexus/dev-server@0.2.68", "", { "dependencies": { "@wrnexus/compiler": "^0.2.68", "@wrnexus/core": "^0.2.68", "@wrnexus/csr": "^0.2.68", "@wrnexus/db": "^0.2.68", "@wrnexus/i18n": "^0.2.68", "@wrnexus/pubsub": "^0.2.68", "@wrnexus/router": "^0.2.68", "@wrnexus/ssr": "^0.2.68", "@wrnexus/styles": "^0.2.68", "@wrnexus/ui": "^0.2.68", "@wrnexus/uploader": "^0.2.68", "@wrnexus/validation": "^0.2.68" } }, "sha512-XwIeFqIemW+Ex2ThQmw8qs4IfYeIIF3m5PKpXrdX0qlnRCeNiies34z/tp88L3FtUHwGj6whQMZ23RkQ8L2ocw=="], + "@wrnexus/dev-server": ["@wrnexus/dev-server@0.2.69", "", { "dependencies": { "@wrnexus/compiler": "^0.2.69", "@wrnexus/core": "^0.2.69", "@wrnexus/csr": "^0.2.69", "@wrnexus/db": "^0.2.69", "@wrnexus/i18n": "^0.2.69", "@wrnexus/pubsub": "^0.2.69", "@wrnexus/router": "^0.2.69", "@wrnexus/ssr": "^0.2.69", "@wrnexus/styles": "^0.2.69", "@wrnexus/ui": "^0.2.69", "@wrnexus/uploader": "^0.2.69", "@wrnexus/validation": "^0.2.69" } }, "sha512-9MBiaTKhqLK/ZK1gzR225xnwMB3q21Vh2+oetRv9FcmBePjFODFGre8k/UlatguLDEjEQ0wacOiZeOgxBeGtsg=="], - "@wrnexus/encryption": ["@wrnexus/encryption@0.2.68", "", {}, "sha512-OBTcxd/XX0j7Rro/M/yqJzbuJAQxJA23vTUNoKV/05VPfEK8SfEdYDTsP+HEku3u11/5XFgIXwL9E2EtPtqdhg=="], + "@wrnexus/encryption": ["@wrnexus/encryption@0.2.69", "", {}, "sha512-hGbL4WglKq0xyQxvQyHnsQpKlICHtAEzdHJitptA/CAG0hO7LA/HF5VIuhnqe193UXgHjUUXtS2aN6s3YubVTw=="], - "@wrnexus/helpers": ["@wrnexus/helpers@0.2.68", "", { "dependencies": { "@wrnexus/core": "^0.2.68" } }, "sha512-L8hn3EbEtV3p3QqKsHFWGs+aexysvqkuAXHCqWiWLW8zb+14Avc6K4LLo2XDhWap9IdJsOb7aRGB8WrZCsNKtw=="], + "@wrnexus/helpers": ["@wrnexus/helpers@0.2.69", "", { "dependencies": { "@wrnexus/core": "^0.2.69" } }, "sha512-x0fImIwnbsuoYYtD4SxjslP5VaXvZldQSCjZETTfyVVOYg4zrDCl6rKd7J1oVBt+VRFWCw92CA0gclqcY2MxCA=="], - "@wrnexus/i18n": ["@wrnexus/i18n@0.2.68", "", { "dependencies": { "@wrnexus/core": "^0.2.68" } }, "sha512-ucblcZfTx+TpG9MvIk/vB5ebCdwepQ0xLyZiFOz2DXCQOS6vp8+QfdNHkf+1shNEPNZEQgbjQ7YOeSUTj8kikQ=="], + "@wrnexus/i18n": ["@wrnexus/i18n@0.2.69", "", { "dependencies": { "@wrnexus/core": "^0.2.69" } }, "sha512-7LYRb51xVxZigdIfSqLXwKNgDnb4rmZTZIcVbmk5C6i+Wra++b3BMXSES0RR9ec5qhVrE+UcstdbdmXcRHlKVQ=="], - "@wrnexus/jwt": ["@wrnexus/jwt@0.2.68", "", {}, "sha512-3Gc11LMzi0P9WJLbolGcQBf0Z/v8lb+CgKIANp8HZCuRCsmTP07BTZV7UQlJ5oLcz56bFjh9DL+9A5YdpJ362g=="], + "@wrnexus/jwt": ["@wrnexus/jwt@0.2.69", "", {}, "sha512-Uny2CVCwmk6hTb7tCqcvmhlfaE1VxoSqWPWFOoZb3GW16vTd30J1gaTULIw9EaFlQLwNkNalkC+VAp3/Osc32Q=="], - "@wrnexus/mobile": ["@wrnexus/mobile@0.2.68", "", { "dependencies": { "@wrnexus/native": "^0.2.68" } }, "sha512-IySbkcPAvILd7OlV/uUe6YNfYf2GEsP0l34xPdg6SZ9/J4S+6EAd+Sxc9FA62sWW3LuYZJd8V+AsaEKQBSA6CA=="], + "@wrnexus/mobile": ["@wrnexus/mobile@0.2.69", "", { "dependencies": { "@wrnexus/native": "^0.2.69" } }, "sha512-HOZycJ6RF5anWx1p4E79p55ZG+/z1cWiN0HpvUYt+RdoH94XZt00DC65BZwEqMD/PTXhGB4N8tHeAPa2Z5vKag=="], - "@wrnexus/native": ["@wrnexus/native@0.2.68", "", {}, "sha512-m40VOxq8XsLiHqrmVddzwDkNSQMv/Wr9vmhUV/kxBolKayYTouKY+Yir9q7cjA3MCpmiGcSYXuQzW7Ou3TPm2Q=="], + "@wrnexus/native": ["@wrnexus/native@0.2.69", "", {}, "sha512-YNk1rpbbA+330hpH67ECsNuc2l4ySNOP/7UMCRK0FZbx9+onSXz+wO7lwcdLlHKywPaQHQlc8bO+XdKxta28Mg=="], - "@wrnexus/oauth": ["@wrnexus/oauth@0.2.68", "", {}, "sha512-fz8E9IGzB6RNkwf4CpuCV2dlc5joOAoNSh0FPn2cWdS7TwuHTlscLIe7fKGtLKnY6wRupWI0RrOC1QQMI4ZS6w=="], + "@wrnexus/oauth": ["@wrnexus/oauth@0.2.69", "", {}, "sha512-MCrZ7kvX6i3ihLnE7LMedpMAmeXR1R46ohpg+pHtPDdWSkGkOsXxdXJchLG4L/yOzE8isibpoXbM28oANeu2WQ=="], - "@wrnexus/pubsub": ["@wrnexus/pubsub@0.2.68", "", {}, "sha512-M9CL9cYaYQidAciQZZ9Kn3Ra/vhvEQ4F1JSvRKhxJk0LhUYQNEEsjx9NlX2nzNXif3ItAqLojZ+6aKFbOlqR/Q=="], + "@wrnexus/pubsub": ["@wrnexus/pubsub@0.2.69", "", {}, "sha512-Sym+6PGsPcV6XlqIVDkXc+K8o4/0iRssrDWwfpy2ew2MwO2162aBjI91XZbvN+CiKF81JYuagiHqv0JAOB+VmQ=="], - "@wrnexus/queue": ["@wrnexus/queue@0.2.68", "", {}, "sha512-wuLXa3AgaL6px7k94ZDt9TukRX3Bzdy8cZCBgG9b2SMBrhgF2tq6QzDPID6IjzpE5V2a5Y82NFEV8NVcBlydqA=="], + "@wrnexus/queue": ["@wrnexus/queue@0.2.69", "", {}, "sha512-t06iSwSMuYYliWhdgdscJq769O1Csg4JHbJkveQ07NN3Yc+Nwmd1M8q9eO2N30fg0mz1A5V1vz6CTwSeRTWmsA=="], - "@wrnexus/reactive": ["@wrnexus/reactive@0.2.68", "", {}, "sha512-GbcgKZr0FJh0aEEN4b1C6EhriiW76f2ZxektxzIkBYw0jN3PJpA2s/M5ilF4DHWb+N3P1GwtDSCN4yoWSlySTg=="], + "@wrnexus/reactive": ["@wrnexus/reactive@0.2.69", "", {}, "sha512-U5+6sozPvz2bMija8WFPM5G/FIjGXvWeEEkT69w8EpoujnDnGaEEfTAbUrQgK6rCDOHl3Opvr68RYy/IKhiH8Q=="], - "@wrnexus/router": ["@wrnexus/router@0.2.68", "", { "dependencies": { "@wrnexus/compiler": "^0.2.68", "@wrnexus/core": "^0.2.68" } }, "sha512-Jy4oV8In0MrpqyLUQ9dQiIMrjKKbGpNX4RvHND8S78dkSSkf5VDBJXa6xEUSc6sAFxi0WuawMKa700VfXFMO8g=="], + "@wrnexus/router": ["@wrnexus/router@0.2.69", "", { "dependencies": { "@wrnexus/compiler": "^0.2.69", "@wrnexus/core": "^0.2.69" } }, "sha512-YIGQB0inuhcYzQX03+QBCVTZymAscfKdHkeMlzVHkwkgdg5byqvMZVSPvpdGMLU+1gB/F97a5awEFjfDhJj+Xg=="], - "@wrnexus/ssr": ["@wrnexus/ssr@0.2.68", "", { "dependencies": { "@wrnexus/core": "^0.2.68" } }, "sha512-aHzAqyX8heU++5gVaCKxdgofBGXa3vBgD4ypitjjAv4MCTiZM5T2GOZCFbYVsdz30pCDwcqkJy9zoBqfHCx+Jg=="], + "@wrnexus/ssr": ["@wrnexus/ssr@0.2.69", "", { "dependencies": { "@wrnexus/core": "^0.2.69" } }, "sha512-6MoUX+aVxO14Ye/Mlqsr6jIscll7Vjbfx3tKesnvQkbPdxmeVP48t8zaE1LP+6vuYSYK2AzUjYR2BlM1khoJEA=="], - "@wrnexus/styles": ["@wrnexus/styles@0.2.68", "", { "dependencies": { "@wrnexus/uploader": "^0.2.68" } }, "sha512-OkZPWWmVHa8bX3faR4xk1XjAXTJtGaZEo6lYyLPkjY0Ho1wLeOChk9IivPphhwzM6gpkw/Cp19e2D7RlGtuRbQ=="], + "@wrnexus/styles": ["@wrnexus/styles@0.2.69", "", { "dependencies": { "@wrnexus/uploader": "^0.2.69" } }, "sha512-4y0HjLvouCekvJhyVA4WgmZYawtmIlTJXxjrrWeciJLqr9Nh91LFy5dJMuuOGeOXMkR+X9mSaibNnEaz+jmqhw=="], - "@wrnexus/test": ["@wrnexus/test@0.2.68", "", {}, "sha512-Nz3ZKLyez3XCXGY/HxWNNKy0YzBdIKEg5MiFfWnbaBV+fKjiglSSW/Gb8qK3fmJ+33qbAcHZAD+VBaHd+nO7Aw=="], + "@wrnexus/test": ["@wrnexus/test@0.2.69", "", {}, "sha512-MXniq/ETwD+MANO7jPtsbA9GaS/1J3cGDMI/RSHnYkkFGc1qhTMso7GbBuRsnUqNc7BSQ27vVjmEa0jJ3E9e5g=="], - "@wrnexus/tracking": ["@wrnexus/tracking@0.2.68", "", {}, "sha512-9s3o5aH6p+CwecInc57fzmFEmZdUagWlp78Cj4+9jolt/mJKay0+/PK9tbYfaBBFqt+bXIARl9abHDR5I1yURw=="], + "@wrnexus/tracking": ["@wrnexus/tracking@0.2.69", "", {}, "sha512-uATZVJK/MXNfnrv5oGH39euwWKoqnwkbh7B7sQOx/dP2DlS40XtehY2WWyN6tE9v96NfU33wKv6LNk5/MRsFjg=="], - "@wrnexus/ui": ["@wrnexus/ui@0.2.68", "", { "dependencies": { "@wrnexus/core": "^0.2.68" } }, "sha512-GajsHLx9MCfc8OeJCAQWx3FXpkbKprzGJKfeEFoNLxdYDfYdL/aeETrgzA6wiIuixGdhmWwpSrS/1qOwsOk3SA=="], + "@wrnexus/ui": ["@wrnexus/ui@0.2.69", "", { "dependencies": { "@wrnexus/core": "^0.2.69" } }, "sha512-MVB1zWMqQzNM48EYrTemiVYk1zkMNcs+lozfUYcRbSlREoj9YEoXrp7qJtqlPPHBe67jJu2loz722zc/t3jtTw=="], - "@wrnexus/uploader": ["@wrnexus/uploader@0.2.68", "", { "dependencies": { "@wrnexus/core": "^0.2.68" } }, "sha512-ln6p3fZo0LxMCGBsZf9+uM71dbnjlmIodTXf6D+yrL0DyhfJF1IHgrGlDZ6+Ili7vqznRRwdTa74o2KhCjep+Q=="], + "@wrnexus/uploader": ["@wrnexus/uploader@0.2.69", "", { "dependencies": { "@wrnexus/core": "^0.2.69" } }, "sha512-gKdX9Gt2OVdeiRUP0PCu2ygCND+NAPHINClnAgjFcoxrpuETQ5TOOyP9XLfldjIZnaeusrmdOYSKnZHZAox5pw=="], - "@wrnexus/validation": ["@wrnexus/validation@0.2.68", "", {}, "sha512-LQlf5Q8kRt/5Lql9VpeOBJWF7vwucT6/RzE3x7l6zirmxLrQ0eWXO11Etu3fhckXKCGU7700Q+UB7r5+AQJkMA=="], + "@wrnexus/validation": ["@wrnexus/validation@0.2.69", "", {}, "sha512-PcXR9NF7WgsR2GqSgx9VNFZ1tVonIBBxfvvnXmrw/yA0uRoKTSBTbzb8sbo1zqTawH6rXB59S8j/wq/z/7LEEQ=="], "acorn": ["acorn@8.17.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg=="], diff --git a/docs/release-access-status.md b/docs/release-access-status.md index 3bf9fea7..86cd1c6c 100644 --- a/docs/release-access-status.md +++ b/docs/release-access-status.md @@ -2,6 +2,6 @@ ## Decision: Mode B — Private Developer Preview -Active version: 0.2.68, derived from package.json#wrnexus.version. All 26 installed @wrnexus packages resolve to 0.2.68 and npm reports restricted access. The repository remote is a private WorkRoot Git service and no public license file exists. +Active version: 0.2.69, derived from package.json#wrnexus.version. All 26 installed @wrnexus packages resolve to 0.2.69 and npm reports restricted access. The repository remote is a private WorkRoot Git service and no public license file exists. -External users cannot execute an installation without approved private registry credentials. The truthful CTA is Request preview access. After approval, the canonical command is bunx @wrnexus/cli@0.2.68 create my-app. Tokens must never appear in documentation or source. +External users cannot execute an installation without approved private registry credentials. The truthful CTA is Request preview access. After approval, the canonical command is bunx @wrnexus/cli@0.2.69 create my-app. Tokens must never appear in documentation or source. diff --git a/docs/site-audit.md b/docs/site-audit.md index 70907662..ca5d2c53 100644 --- a/docs/site-audit.md +++ b/docs/site-audit.md @@ -1,6 +1,6 @@ # WRNexusJS site audit -Date: 2026-07-13. Baseline: Bun 1.3.14, framework 0.2.68. +Date: 2026-07-13. Baseline: Bun 1.3.14, framework 0.2.69. ## Baseline results @@ -12,7 +12,7 @@ Date: 2026-07-13. Baseline: Bun 1.3.14, framework 0.2.68. ## Findings -Package documentation, discovery assets, and AI-readable references are generated from the installed release. The 0.2.68 portal includes the helpers package, workspace app addition, and safe forward-auth login redirect guidance. +Package documentation, discovery assets, and AI-readable references are generated from the installed release. The 0.2.69 portal includes the helpers package, workspace app addition, and safe forward-auth login redirect guidance. ## Audit limitations diff --git a/package-lock.json b/package-lock.json index 98f2656f..1c3876e8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,38 +10,38 @@ "dependencies": { "@iconify-json/lucide": "^1.2.118", "@iconify/tailwind4": "^1.2.3", - "@wrnexus/ai": "^0.2.68", - "@wrnexus/authz": "^0.2.68", - "@wrnexus/compiler": "^0.2.68", - "@wrnexus/core": "^0.2.68", - "@wrnexus/csr": "^0.2.68", - "@wrnexus/db": "^0.2.68", - "@wrnexus/dev-server": "^0.2.68", - "@wrnexus/encryption": "^0.2.68", - "@wrnexus/helpers": "^0.2.68", - "@wrnexus/i18n": "^0.2.68", - "@wrnexus/jwt": "^0.2.68", - "@wrnexus/mobile": "^0.2.68", - "@wrnexus/native": "^0.2.68", - "@wrnexus/oauth": "^0.2.68", - "@wrnexus/pubsub": "^0.2.68", - "@wrnexus/queue": "^0.2.68", - "@wrnexus/reactive": "^0.2.68", - "@wrnexus/router": "^0.2.68", - "@wrnexus/ssr": "^0.2.68", - "@wrnexus/styles": "^0.2.68", - "@wrnexus/test": "^0.2.68", - "@wrnexus/tracking": "^0.2.68", - "@wrnexus/ui": "^0.2.68", - "@wrnexus/uploader": "^0.2.68", - "@wrnexus/validation": "^0.2.68" + "@wrnexus/ai": "^0.2.69", + "@wrnexus/authz": "^0.2.69", + "@wrnexus/compiler": "^0.2.69", + "@wrnexus/core": "^0.2.69", + "@wrnexus/csr": "^0.2.69", + "@wrnexus/db": "^0.2.69", + "@wrnexus/dev-server": "^0.2.69", + "@wrnexus/encryption": "^0.2.69", + "@wrnexus/helpers": "^0.2.69", + "@wrnexus/i18n": "^0.2.69", + "@wrnexus/jwt": "^0.2.69", + "@wrnexus/mobile": "^0.2.69", + "@wrnexus/native": "^0.2.69", + "@wrnexus/oauth": "^0.2.69", + "@wrnexus/pubsub": "^0.2.69", + "@wrnexus/queue": "^0.2.69", + "@wrnexus/reactive": "^0.2.69", + "@wrnexus/router": "^0.2.69", + "@wrnexus/ssr": "^0.2.69", + "@wrnexus/styles": "^0.2.69", + "@wrnexus/test": "^0.2.69", + "@wrnexus/tracking": "^0.2.69", + "@wrnexus/ui": "^0.2.69", + "@wrnexus/uploader": "^0.2.69", + "@wrnexus/validation": "^0.2.69" }, "devDependencies": { "@eslint/js": "^9.0.0", "@tailwindcss/cli": "^4.0.0", "@types/bun": "latest", "@types/node": "^26.1.1", - "@wrnexus/cli": "^0.2.68", + "@wrnexus/cli": "^0.2.69", "eslint": "^9.0.0", "prettier": "latest", "tailwindcss": "^4.0.0", @@ -1301,40 +1301,40 @@ } }, "node_modules/@wrnexus/ai": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/ai/-/ai-0.2.68.tgz", - "integrity": "sha512-S8kblYSOpDCnGvSmrRmK+3MRQ2r+2Ys/0RA6Nx6wqUpsf4IL7T3++EKls1W2U35ruU4sFLpQBMowXJj1p4dcfg==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/ai/-/ai-0.2.69.tgz", + "integrity": "sha512-o+K6NO5ijBTxfThMfYhZvbebB5pudbQe7uYUlLdBxTHImd0ae2Un7Gmm6pwNg11uq+UIKX9plykIqhK6MpI4cQ==", "license": "MIT", "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/authz": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/authz/-/authz-0.2.68.tgz", - "integrity": "sha512-WClo+4QEtiVx6ueNNZ+m5B7jLP24H/fYzA2lLwL8yLsgDQhabwakmq6/8fwft8VeQ6Zfj6E9TjIkLJn1XH1U0A==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/authz/-/authz-0.2.69.tgz", + "integrity": "sha512-JMR189W7zgQPU6oc1TLWMoaNeABQBiwa/3G4FAljejNcTM7YFMua8FxlQ0RTOz3e5t1Y6Ubbfhdqz3aSzyAWqQ==", "license": "MIT", "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/cli": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/cli/-/cli-0.2.68.tgz", - "integrity": "sha512-ECYJgQpUJUHHhgNPS6ti8fLAfViXTZe5Q0G0qoYXBYkQ+VuPBcq/STT1NZGj8mtgtYy6B0arRNtWpem7KaVD6g==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/cli/-/cli-0.2.69.tgz", + "integrity": "sha512-tTl58kdaMLablM4JkUksJRxB9rZvzhbJC4E2DANX+vh2EqtOIqdhzwkiufOyTMggoNX3nJP8Xx7OMmR3QonyBw==", "dev": true, "license": "MIT", "dependencies": { - "@wrnexus/compiler": "^0.2.68", - "@wrnexus/core": "^0.2.68", - "@wrnexus/csr": "^0.2.68", - "@wrnexus/db": "^0.2.68", - "@wrnexus/dev-server": "^0.2.68", - "@wrnexus/i18n": "^0.2.68", - "@wrnexus/router": "^0.2.68", - "@wrnexus/styles": "^0.2.68", - "@wrnexus/ui": "^0.2.68", - "@wrnexus/validation": "^0.2.68" + "@wrnexus/compiler": "^0.2.69", + "@wrnexus/core": "^0.2.69", + "@wrnexus/csr": "^0.2.69", + "@wrnexus/db": "^0.2.69", + "@wrnexus/dev-server": "^0.2.69", + "@wrnexus/i18n": "^0.2.69", + "@wrnexus/router": "^0.2.69", + "@wrnexus/styles": "^0.2.69", + "@wrnexus/ui": "^0.2.69", + "@wrnexus/validation": "^0.2.69" }, "bin": { "wrnexus": "dist/index.js" @@ -1344,249 +1344,249 @@ } }, "node_modules/@wrnexus/compiler": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/compiler/-/compiler-0.2.68.tgz", - "integrity": "sha512-hog2ju5KKpaKEDb66Mzv+QdGA2oydkHop188jJTBv8kP+7yWyYL/XSOh/cmpmliRk5QAmbowJuVyCSjNBRHsMw==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/compiler/-/compiler-0.2.69.tgz", + "integrity": "sha512-mORfyfbXUHWLZMZ3MPt50nxv93saiEdtj0ICy0Jxcz9vxAGpmzgYRh3bF/BKpG8jRuNpYxadsE9dOGstLRZUuQ==", "license": "MIT", "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/core": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/core/-/core-0.2.68.tgz", - "integrity": "sha512-HsZ1DCwEPP3sdop+RGY9JWFtzqPvzIQYydDq8FMr5GGjj+bpEBQUcpQzgfj7Rb3Uik/GUVTZcZPqpgvVEfwl4Q==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/core/-/core-0.2.69.tgz", + "integrity": "sha512-oLg3iBgNquuAZvwVZI7YLQnluAEOQI7vic2QRYJyxmFl6ACLvIxRJk+OMDrSXCQmg1KXPuAf2fPY3Zd73/Sf4w==", "license": "MIT", "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/csr": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/csr/-/csr-0.2.68.tgz", - "integrity": "sha512-wPJVkcOfgJswBs7JxSV2OU4xRnqc6rQ26Op3OZTM5kV2NjC8ocLKoIO7nWB45JQQMjG/NeU2cMa1GO7uj7xoOQ==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/csr/-/csr-0.2.69.tgz", + "integrity": "sha512-oBY3fccpN0fVcI3D+6eFHj8djKZ4xJffFyldDJ0DCXfR8U3bVimmcIJK0jDCx0+2lhrNovXVWlZkxfTDfHh/NQ==", "license": "MIT", "dependencies": { - "@wrnexus/core": "^0.2.68" + "@wrnexus/core": "^0.2.69" }, "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/db": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/db/-/db-0.2.68.tgz", - "integrity": "sha512-pvm9h/aa6xqgr+xdgZ0ShRJWX06vdft2RgZ8MZ41VWDu7BcFiNPS49SR/elTK8uwj/P2djb3qFi8ekHWRVsRJA==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/db/-/db-0.2.69.tgz", + "integrity": "sha512-LXRlNcfp1eLomf/et9Mn1+8d79LDqnrMiIx6UBiKS8UPUi4dzbI/JoZ3Fyu8BKsMst7xr0LtbXTRkgshATu4mg==", "license": "MIT", "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/dev-server": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/dev-server/-/dev-server-0.2.68.tgz", - "integrity": "sha512-XwIeFqIemW+Ex2ThQmw8qs4IfYeIIF3m5PKpXrdX0qlnRCeNiies34z/tp88L3FtUHwGj6whQMZ23RkQ8L2ocw==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/dev-server/-/dev-server-0.2.69.tgz", + "integrity": "sha512-9MBiaTKhqLK/ZK1gzR225xnwMB3q21Vh2+oetRv9FcmBePjFODFGre8k/UlatguLDEjEQ0wacOiZeOgxBeGtsg==", "license": "MIT", "dependencies": { - "@wrnexus/compiler": "^0.2.68", - "@wrnexus/core": "^0.2.68", - "@wrnexus/csr": "^0.2.68", - "@wrnexus/db": "^0.2.68", - "@wrnexus/i18n": "^0.2.68", - "@wrnexus/pubsub": "^0.2.68", - "@wrnexus/router": "^0.2.68", - "@wrnexus/ssr": "^0.2.68", - "@wrnexus/styles": "^0.2.68", - "@wrnexus/ui": "^0.2.68", - "@wrnexus/uploader": "^0.2.68", - "@wrnexus/validation": "^0.2.68" + "@wrnexus/compiler": "^0.2.69", + "@wrnexus/core": "^0.2.69", + "@wrnexus/csr": "^0.2.69", + "@wrnexus/db": "^0.2.69", + "@wrnexus/i18n": "^0.2.69", + "@wrnexus/pubsub": "^0.2.69", + "@wrnexus/router": "^0.2.69", + "@wrnexus/ssr": "^0.2.69", + "@wrnexus/styles": "^0.2.69", + "@wrnexus/ui": "^0.2.69", + "@wrnexus/uploader": "^0.2.69", + "@wrnexus/validation": "^0.2.69" }, "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/encryption": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/encryption/-/encryption-0.2.68.tgz", - "integrity": "sha512-OBTcxd/XX0j7Rro/M/yqJzbuJAQxJA23vTUNoKV/05VPfEK8SfEdYDTsP+HEku3u11/5XFgIXwL9E2EtPtqdhg==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/encryption/-/encryption-0.2.69.tgz", + "integrity": "sha512-hGbL4WglKq0xyQxvQyHnsQpKlICHtAEzdHJitptA/CAG0hO7LA/HF5VIuhnqe193UXgHjUUXtS2aN6s3YubVTw==", "license": "MIT", "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/helpers": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/helpers/-/helpers-0.2.68.tgz", - "integrity": "sha512-L8hn3EbEtV3p3QqKsHFWGs+aexysvqkuAXHCqWiWLW8zb+14Avc6K4LLo2XDhWap9IdJsOb7aRGB8WrZCsNKtw==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/helpers/-/helpers-0.2.69.tgz", + "integrity": "sha512-x0fImIwnbsuoYYtD4SxjslP5VaXvZldQSCjZETTfyVVOYg4zrDCl6rKd7J1oVBt+VRFWCw92CA0gclqcY2MxCA==", "license": "MIT", "dependencies": { - "@wrnexus/core": "^0.2.68" + "@wrnexus/core": "^0.2.69" }, "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/i18n": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/i18n/-/i18n-0.2.68.tgz", - "integrity": "sha512-ucblcZfTx+TpG9MvIk/vB5ebCdwepQ0xLyZiFOz2DXCQOS6vp8+QfdNHkf+1shNEPNZEQgbjQ7YOeSUTj8kikQ==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/i18n/-/i18n-0.2.69.tgz", + "integrity": "sha512-7LYRb51xVxZigdIfSqLXwKNgDnb4rmZTZIcVbmk5C6i+Wra++b3BMXSES0RR9ec5qhVrE+UcstdbdmXcRHlKVQ==", "license": "MIT", "dependencies": { - "@wrnexus/core": "^0.2.68" + "@wrnexus/core": "^0.2.69" }, "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/jwt": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/jwt/-/jwt-0.2.68.tgz", - "integrity": "sha512-3Gc11LMzi0P9WJLbolGcQBf0Z/v8lb+CgKIANp8HZCuRCsmTP07BTZV7UQlJ5oLcz56bFjh9DL+9A5YdpJ362g==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/jwt/-/jwt-0.2.69.tgz", + "integrity": "sha512-Uny2CVCwmk6hTb7tCqcvmhlfaE1VxoSqWPWFOoZb3GW16vTd30J1gaTULIw9EaFlQLwNkNalkC+VAp3/Osc32Q==", "license": "MIT", "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/mobile": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/mobile/-/mobile-0.2.68.tgz", - "integrity": "sha512-IySbkcPAvILd7OlV/uUe6YNfYf2GEsP0l34xPdg6SZ9/J4S+6EAd+Sxc9FA62sWW3LuYZJd8V+AsaEKQBSA6CA==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/mobile/-/mobile-0.2.69.tgz", + "integrity": "sha512-HOZycJ6RF5anWx1p4E79p55ZG+/z1cWiN0HpvUYt+RdoH94XZt00DC65BZwEqMD/PTXhGB4N8tHeAPa2Z5vKag==", "license": "MIT", "dependencies": { - "@wrnexus/native": "^0.2.68" + "@wrnexus/native": "^0.2.69" }, "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/native": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/native/-/native-0.2.68.tgz", - "integrity": "sha512-m40VOxq8XsLiHqrmVddzwDkNSQMv/Wr9vmhUV/kxBolKayYTouKY+Yir9q7cjA3MCpmiGcSYXuQzW7Ou3TPm2Q==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/native/-/native-0.2.69.tgz", + "integrity": "sha512-YNk1rpbbA+330hpH67ECsNuc2l4ySNOP/7UMCRK0FZbx9+onSXz+wO7lwcdLlHKywPaQHQlc8bO+XdKxta28Mg==", "license": "MIT", "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/oauth": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/oauth/-/oauth-0.2.68.tgz", - "integrity": "sha512-fz8E9IGzB6RNkwf4CpuCV2dlc5joOAoNSh0FPn2cWdS7TwuHTlscLIe7fKGtLKnY6wRupWI0RrOC1QQMI4ZS6w==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/oauth/-/oauth-0.2.69.tgz", + "integrity": "sha512-MCrZ7kvX6i3ihLnE7LMedpMAmeXR1R46ohpg+pHtPDdWSkGkOsXxdXJchLG4L/yOzE8isibpoXbM28oANeu2WQ==", "license": "MIT", "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/pubsub": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/pubsub/-/pubsub-0.2.68.tgz", - "integrity": "sha512-M9CL9cYaYQidAciQZZ9Kn3Ra/vhvEQ4F1JSvRKhxJk0LhUYQNEEsjx9NlX2nzNXif3ItAqLojZ+6aKFbOlqR/Q==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/pubsub/-/pubsub-0.2.69.tgz", + "integrity": "sha512-Sym+6PGsPcV6XlqIVDkXc+K8o4/0iRssrDWwfpy2ew2MwO2162aBjI91XZbvN+CiKF81JYuagiHqv0JAOB+VmQ==", "license": "MIT", "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/queue": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/queue/-/queue-0.2.68.tgz", - "integrity": "sha512-wuLXa3AgaL6px7k94ZDt9TukRX3Bzdy8cZCBgG9b2SMBrhgF2tq6QzDPID6IjzpE5V2a5Y82NFEV8NVcBlydqA==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/queue/-/queue-0.2.69.tgz", + "integrity": "sha512-t06iSwSMuYYliWhdgdscJq769O1Csg4JHbJkveQ07NN3Yc+Nwmd1M8q9eO2N30fg0mz1A5V1vz6CTwSeRTWmsA==", "license": "MIT", "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/reactive": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/reactive/-/reactive-0.2.68.tgz", - "integrity": "sha512-GbcgKZr0FJh0aEEN4b1C6EhriiW76f2ZxektxzIkBYw0jN3PJpA2s/M5ilF4DHWb+N3P1GwtDSCN4yoWSlySTg==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/reactive/-/reactive-0.2.69.tgz", + "integrity": "sha512-U5+6sozPvz2bMija8WFPM5G/FIjGXvWeEEkT69w8EpoujnDnGaEEfTAbUrQgK6rCDOHl3Opvr68RYy/IKhiH8Q==", "license": "MIT", "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/router": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/router/-/router-0.2.68.tgz", - "integrity": "sha512-Jy4oV8In0MrpqyLUQ9dQiIMrjKKbGpNX4RvHND8S78dkSSkf5VDBJXa6xEUSc6sAFxi0WuawMKa700VfXFMO8g==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/router/-/router-0.2.69.tgz", + "integrity": "sha512-YIGQB0inuhcYzQX03+QBCVTZymAscfKdHkeMlzVHkwkgdg5byqvMZVSPvpdGMLU+1gB/F97a5awEFjfDhJj+Xg==", "license": "MIT", "dependencies": { - "@wrnexus/compiler": "^0.2.68", - "@wrnexus/core": "^0.2.68" + "@wrnexus/compiler": "^0.2.69", + "@wrnexus/core": "^0.2.69" }, "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/ssr": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/ssr/-/ssr-0.2.68.tgz", - "integrity": "sha512-aHzAqyX8heU++5gVaCKxdgofBGXa3vBgD4ypitjjAv4MCTiZM5T2GOZCFbYVsdz30pCDwcqkJy9zoBqfHCx+Jg==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/ssr/-/ssr-0.2.69.tgz", + "integrity": "sha512-6MoUX+aVxO14Ye/Mlqsr6jIscll7Vjbfx3tKesnvQkbPdxmeVP48t8zaE1LP+6vuYSYK2AzUjYR2BlM1khoJEA==", "license": "MIT", "dependencies": { - "@wrnexus/core": "^0.2.68" + "@wrnexus/core": "^0.2.69" }, "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/styles": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/styles/-/styles-0.2.68.tgz", - "integrity": "sha512-OkZPWWmVHa8bX3faR4xk1XjAXTJtGaZEo6lYyLPkjY0Ho1wLeOChk9IivPphhwzM6gpkw/Cp19e2D7RlGtuRbQ==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/styles/-/styles-0.2.69.tgz", + "integrity": "sha512-4y0HjLvouCekvJhyVA4WgmZYawtmIlTJXxjrrWeciJLqr9Nh91LFy5dJMuuOGeOXMkR+X9mSaibNnEaz+jmqhw==", "license": "MIT", "dependencies": { - "@wrnexus/uploader": "^0.2.68" + "@wrnexus/uploader": "^0.2.69" }, "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/test": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/test/-/test-0.2.68.tgz", - "integrity": "sha512-Nz3ZKLyez3XCXGY/HxWNNKy0YzBdIKEg5MiFfWnbaBV+fKjiglSSW/Gb8qK3fmJ+33qbAcHZAD+VBaHd+nO7Aw==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/test/-/test-0.2.69.tgz", + "integrity": "sha512-MXniq/ETwD+MANO7jPtsbA9GaS/1J3cGDMI/RSHnYkkFGc1qhTMso7GbBuRsnUqNc7BSQ27vVjmEa0jJ3E9e5g==", "license": "MIT", "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/tracking": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/tracking/-/tracking-0.2.68.tgz", - "integrity": "sha512-9s3o5aH6p+CwecInc57fzmFEmZdUagWlp78Cj4+9jolt/mJKay0+/PK9tbYfaBBFqt+bXIARl9abHDR5I1yURw==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/tracking/-/tracking-0.2.69.tgz", + "integrity": "sha512-uATZVJK/MXNfnrv5oGH39euwWKoqnwkbh7B7sQOx/dP2DlS40XtehY2WWyN6tE9v96NfU33wKv6LNk5/MRsFjg==", "license": "MIT", "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/ui": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/ui/-/ui-0.2.68.tgz", - "integrity": "sha512-GajsHLx9MCfc8OeJCAQWx3FXpkbKprzGJKfeEFoNLxdYDfYdL/aeETrgzA6wiIuixGdhmWwpSrS/1qOwsOk3SA==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/ui/-/ui-0.2.69.tgz", + "integrity": "sha512-MVB1zWMqQzNM48EYrTemiVYk1zkMNcs+lozfUYcRbSlREoj9YEoXrp7qJtqlPPHBe67jJu2loz722zc/t3jtTw==", "license": "MIT", "dependencies": { - "@wrnexus/core": "^0.2.68" + "@wrnexus/core": "^0.2.69" }, "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/uploader": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/uploader/-/uploader-0.2.68.tgz", - "integrity": "sha512-ln6p3fZo0LxMCGBsZf9+uM71dbnjlmIodTXf6D+yrL0DyhfJF1IHgrGlDZ6+Ili7vqznRRwdTa74o2KhCjep+Q==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/uploader/-/uploader-0.2.69.tgz", + "integrity": "sha512-gKdX9Gt2OVdeiRUP0PCu2ygCND+NAPHINClnAgjFcoxrpuETQ5TOOyP9XLfldjIZnaeusrmdOYSKnZHZAox5pw==", "license": "MIT", "dependencies": { - "@wrnexus/core": "^0.2.68" + "@wrnexus/core": "^0.2.69" }, "engines": { "bun": ">=1.1.0" } }, "node_modules/@wrnexus/validation": { - "version": "0.2.68", - "resolved": "https://registry.npmjs.org/@wrnexus/validation/-/validation-0.2.68.tgz", - "integrity": "sha512-LQlf5Q8kRt/5Lql9VpeOBJWF7vwucT6/RzE3x7l6zirmxLrQ0eWXO11Etu3fhckXKCGU7700Q+UB7r5+AQJkMA==", + "version": "0.2.69", + "resolved": "https://registry.npmjs.org/@wrnexus/validation/-/validation-0.2.69.tgz", + "integrity": "sha512-PcXR9NF7WgsR2GqSgx9VNFZ1tVonIBBxfvvnXmrw/yA0uRoKTSBTbzb8sbo1zqTawH6rXB59S8j/wq/z/7LEEQ==", "license": "MIT", "engines": { "bun": ">=1.1.0" diff --git a/package.json b/package.json index 28993f4d..37c99475 100644 --- a/package.json +++ b/package.json @@ -19,38 +19,38 @@ "dependencies": { "@iconify-json/lucide": "^1.2.118", "@iconify/tailwind4": "^1.2.3", - "@wrnexus/ai": "^0.2.68", - "@wrnexus/authz": "^0.2.68", - "@wrnexus/compiler": "^0.2.68", - "@wrnexus/core": "^0.2.68", - "@wrnexus/csr": "^0.2.68", - "@wrnexus/db": "^0.2.68", - "@wrnexus/dev-server": "^0.2.68", - "@wrnexus/encryption": "^0.2.68", - "@wrnexus/helpers": "^0.2.68", - "@wrnexus/i18n": "^0.2.68", - "@wrnexus/jwt": "^0.2.68", - "@wrnexus/mobile": "^0.2.68", - "@wrnexus/native": "^0.2.68", - "@wrnexus/oauth": "^0.2.68", - "@wrnexus/pubsub": "^0.2.68", - "@wrnexus/queue": "^0.2.68", - "@wrnexus/reactive": "^0.2.68", - "@wrnexus/router": "^0.2.68", - "@wrnexus/ssr": "^0.2.68", - "@wrnexus/styles": "^0.2.68", - "@wrnexus/test": "^0.2.68", - "@wrnexus/tracking": "^0.2.68", - "@wrnexus/ui": "^0.2.68", - "@wrnexus/uploader": "^0.2.68", - "@wrnexus/validation": "^0.2.68" + "@wrnexus/ai": "^0.2.69", + "@wrnexus/authz": "^0.2.69", + "@wrnexus/compiler": "^0.2.69", + "@wrnexus/core": "^0.2.69", + "@wrnexus/csr": "^0.2.69", + "@wrnexus/db": "^0.2.69", + "@wrnexus/dev-server": "^0.2.69", + "@wrnexus/encryption": "^0.2.69", + "@wrnexus/helpers": "^0.2.69", + "@wrnexus/i18n": "^0.2.69", + "@wrnexus/jwt": "^0.2.69", + "@wrnexus/mobile": "^0.2.69", + "@wrnexus/native": "^0.2.69", + "@wrnexus/oauth": "^0.2.69", + "@wrnexus/pubsub": "^0.2.69", + "@wrnexus/queue": "^0.2.69", + "@wrnexus/reactive": "^0.2.69", + "@wrnexus/router": "^0.2.69", + "@wrnexus/ssr": "^0.2.69", + "@wrnexus/styles": "^0.2.69", + "@wrnexus/test": "^0.2.69", + "@wrnexus/tracking": "^0.2.69", + "@wrnexus/ui": "^0.2.69", + "@wrnexus/uploader": "^0.2.69", + "@wrnexus/validation": "^0.2.69" }, "devDependencies": { "@eslint/js": "^9.0.0", "@tailwindcss/cli": "^4.0.0", "@types/bun": "latest", "@types/node": "^26.1.1", - "@wrnexus/cli": "^0.2.68", + "@wrnexus/cli": "^0.2.69", "eslint": "^9.0.0", "prettier": "latest", "tailwindcss": "^4.0.0", @@ -58,6 +58,6 @@ "typescript-eslint": "latest" }, "wrnexus": { - "version": "0.2.68" + "version": "0.2.69" } } diff --git a/public/docs-index.json b/public/docs-index.json index 377694f9..98b5d1e5 100644 --- a/public/docs-index.json +++ b/public/docs-index.json @@ -1,5 +1,5 @@ { - "version": "0.2.68", + "version": "0.2.69", "status": "private-developer-preview", "generatedAt": "2026-07-13", "documents": [ @@ -7,6790 +7,6790 @@ "url": "/", "title": "WRNexusJS", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/access", "title": "access", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/getting-started", "title": "getting started", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/tutorial", "title": "tutorial", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/architecture", "title": "architecture", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/language", "title": "language", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages", "title": "packages", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components", "title": "components", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/guides/project-structure", "title": "project structure", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/guides/routing", "title": "routing", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/guides/pages-and-components", "title": "pages and components", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/guides/server-data", "title": "server data", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/guides/api-routes", "title": "api routes", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/guides/middleware", "title": "middleware", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/guides/forms-and-validation", "title": "forms and validation", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/guides/authentication", "title": "authentication", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/guides/authorization", "title": "authorization", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/guides/security", "title": "security", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/guides/database", "title": "database", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/guides/uploads", "title": "uploads", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/guides/realtime", "title": "realtime", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/guides/pubsub", "title": "pubsub", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/guides/queues", "title": "queues", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "experimental" }, { "url": "/guides/testing", "title": "testing", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/guides/workspaces-and-gateway", "title": "workspaces and gateway", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/guides/deployment", "title": "deployment", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/guides/configuration-and-profiles", "title": "configuration and profiles", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/guides/i18n-and-themes", "title": "i18n and themes", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/guides/mobile", "title": "mobile", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "experimental" }, { "url": "/guides/observability", "title": "observability", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/guides/upgrading", "title": "upgrading", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/guides/troubleshooting", "title": "troubleshooting", "section": "guide", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/examples", "title": "examples", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/showcase", "title": "showcase", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/benchmarks", "title": "benchmarks", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/roadmap", "title": "roadmap", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/changelog", "title": "changelog", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { - "url": "/releases/0.2.68", - "title": "0.2.68", + "url": "/releases/0.2.69", + "title": "0.2.69", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/security", "title": "security", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/support", "title": "support", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/license", "title": "license", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/search", "title": "search", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/404", "title": "404", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/ai", "title": "ai", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/authz", "title": "authz", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/cli", "title": "cli", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/compiler", "title": "compiler", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/core", "title": "core", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/csr", "title": "csr", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/db", "title": "db", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/dev-server", "title": "dev server", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/encryption", "title": "encryption", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/helpers", "title": "helpers", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/i18n", "title": "i18n", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/jwt", "title": "jwt", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/mobile", "title": "mobile", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "experimental" }, { "url": "/packages/native", "title": "native", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/oauth", "title": "oauth", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/pubsub", "title": "pubsub", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/queue", "title": "queue", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/reactive", "title": "reactive", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/router", "title": "router", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/ssr", "title": "ssr", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/styles", "title": "styles", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/test", "title": "test", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/tracking", "title": "tracking", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/ui", "title": "ui", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/uploader", "title": "uploader", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/packages/validation", "title": "validation", "section": "package", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/accept-all-cookies-button", "title": "accept all cookies button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/accessible-accordion", "title": "accessible accordion", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/accessible-carousel", "title": "accessible carousel", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/accessible-chart-summary", "title": "accessible chart summary", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/accessible-dialog", "title": "accessible dialog", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/accessible-error-summary", "title": "accessible error summary", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/accessible-icon", "title": "accessible icon", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/accessible-menu", "title": "accessible menu", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/accessible-tabs", "title": "accessible tabs", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/accessible-tooltip", "title": "accessible tooltip", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/accordion", "title": "accordion", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/account-menu", "title": "account menu", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/account-status-banner", "title": "account status banner", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/action-menu", "title": "action menu", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/active-filter-list", "title": "active filter list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/activity-list", "title": "activity list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/add-on-card", "title": "add on card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/address-input", "title": "address input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/address-preview", "title": "address preview", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/advanced-filter-builder", "title": "advanced filter builder", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/alert", "title": "alert", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/alert-dialog", "title": "alert dialog", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/amount-input", "title": "amount input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/analytics-dashboard-preview", "title": "analytics dashboard preview", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/anchor-navigation", "title": "anchor navigation", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/announcement-bar", "title": "announcement bar", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/apartment-input", "title": "apartment input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/api-authentication-notice", "title": "api authentication notice", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/api-endpoint-card", "title": "api endpoint card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/api-error-example", "title": "api error example", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/api-header-table", "title": "api header table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/api-key-create-dialog", "title": "api key create dialog", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/api-key-display", "title": "api key display", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/api-key-input", "title": "api key input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/api-method-badge", "title": "api method badge", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/api-parameter-table", "title": "api parameter table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/api-rate-limit-notice", "title": "api rate limit notice", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/api-request-example", "title": "api request example", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/api-response-example", "title": "api response example", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/api-schema-table", "title": "api schema table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/api-schema-viewer", "title": "api schema viewer", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/api-version-badge", "title": "api version badge", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/app-header", "title": "app header", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/architecture-section", "title": "architecture section", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/area-chart", "title": "area chart", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/article-hero", "title": "article hero", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/article-layout", "title": "article layout", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/article-newsletter-cta", "title": "article newsletter cta", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/article-page-shell", "title": "article page shell", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/article-share-actions", "title": "article share actions", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/aspect-ratio", "title": "aspect ratio", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/asset-card", "title": "asset card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/attachment-picker", "title": "attachment picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/attachment-upload", "title": "attachment upload", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/audio-upload", "title": "audio upload", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/audit-log-preview", "title": "audit log preview", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/audit-table", "title": "audit table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/authenticator-code-input", "title": "authenticator code input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/author-avatar", "title": "author avatar", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/author-card", "title": "author card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/authorized-application-card", "title": "authorized application card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/auto-grid", "title": "auto grid", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/automation-example-card", "title": "automation example card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/availability-calendar", "title": "availability calendar", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/avatar", "title": "avatar", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/avatar-group", "title": "avatar group", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/avatar-upload", "title": "avatar upload", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/back-button", "title": "back button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/back-to-top", "title": "back to top", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/badge", "title": "badge", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/bank-transfer-details", "title": "bank transfer details", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/banner", "title": "banner", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/bar-chart", "title": "bar chart", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/beta-badge", "title": "beta badge", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/billing-address-form", "title": "billing address form", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/billing-example", "title": "billing example", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/billing-period-toggle", "title": "billing period toggle", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/blackout-date-picker", "title": "blackout date picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/blog-card", "title": "blog card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/blog-grid", "title": "blog grid", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/blog-list", "title": "blog list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/blog-search", "title": "blog search", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/body-text", "title": "body text", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/border-radius-picker", "title": "border radius picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/bottom-navigation", "title": "bottom navigation", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/brand-color-picker", "title": "brand color picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/brand-selector", "title": "brand selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/breadcrumbs", "title": "breadcrumbs", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/browser-frame", "title": "browser frame", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/budget-range-slider", "title": "budget range slider", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/budget-selector", "title": "budget selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/business-hours-picker", "title": "business hours picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/button", "title": "button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/button-group", "title": "button group", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/button-selector", "title": "button selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/calendar", "title": "calendar", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/calendar-grid", "title": "calendar grid", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/calendar-header", "title": "calendar header", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/calendar-navigation", "title": "calendar navigation", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/callback-url-input", "title": "callback url input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/campaign-card", "title": "campaign card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/campaign-performance-preview", "title": "campaign performance preview", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/campaign-progress", "title": "campaign progress", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/capability-grid", "title": "capability grid", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/captcha-field", "title": "captcha field", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/card", "title": "card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/card-payment-form", "title": "card payment form", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/card-selector", "title": "card selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/card-skeleton", "title": "card skeleton", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/career-application-form", "title": "career application form", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/career-benefits-grid", "title": "career benefits grid", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/carousel", "title": "carousel", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/case-study-card", "title": "case study card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/case-study-hero", "title": "case study hero", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/case-study-preview", "title": "case study preview", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/centered-cta", "title": "centered cta", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/centered-hero", "title": "centered hero", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/centered-section-header", "title": "centered section header", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/certificate-upload", "title": "certificate upload", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/certification-badge", "title": "certification badge", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/challenge-section", "title": "challenge section", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/channel-badge", "title": "channel badge", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/channel-card", "title": "channel card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/channel-comparison-chart", "title": "channel comparison chart", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/channel-comparison-table", "title": "channel comparison table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/channel-fallback-diagram", "title": "channel fallback diagram", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/channel-flow", "title": "channel flow", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/channel-icon", "title": "channel icon", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/channel-rate-table", "title": "channel rate table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/channel-selector", "title": "channel selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/character-counter", "title": "character counter", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/chart-empty-state", "title": "chart empty state", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/chart-tooltip", "title": "chart tooltip", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/checkbox", "title": "checkbox", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/checkbox-group", "title": "checkbox group", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/checklist", "title": "checklist", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/checklist-progress", "title": "checklist progress", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/chip", "title": "chip", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/chip-input", "title": "chip input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/circular-progress", "title": "circular progress", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/city-selector", "title": "city selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/clear-filters-button", "title": "clear filters button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/clickable-card", "title": "clickable card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/close-button", "title": "close button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/cluster", "title": "cluster", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/code", "title": "code", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/code-block", "title": "code block", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/code-copy-button", "title": "code copy button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/code-header", "title": "code header", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/code-input", "title": "code input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/code-language-badge", "title": "code language badge", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/code-tabs", "title": "code tabs", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/code-text", "title": "code text", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/cohort-chart", "title": "cohort chart", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/color-grid", "title": "color grid", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/color-hex-input", "title": "color hex input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/color-picker", "title": "color picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/color-selector", "title": "color selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/color-swatch", "title": "color swatch", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/combobox", "title": "combobox", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/coming-soon-badge", "title": "coming soon badge", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/coming-soon-state", "title": "coming soon state", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/command-block", "title": "command block", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/command-menu", "title": "command menu", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/command-search-input", "title": "command search input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/company-hero", "title": "company hero", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/company-name-input", "title": "company name input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/company-page-shell", "title": "company page shell", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/company-size-selector", "title": "company size selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/comparison-date-range-picker", "title": "comparison date range picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/comparison-table", "title": "comparison table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/completion-meter", "title": "completion meter", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/compliance-badge-list", "title": "compliance badge list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/compliance-program-card", "title": "compliance program card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/confirmation-dialog", "title": "confirmation dialog", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/confirm-password-input", "title": "confirm password input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/connected-account-card", "title": "connected account card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/connection-card", "title": "connection card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/consent-timeline-preview", "title": "consent timeline preview", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/contact-card", "title": "contact card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/contact-cta", "title": "contact cta", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/contact-form", "title": "contact form", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/contact-hero", "title": "contact hero", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/contact-page-shell", "title": "contact page shell", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/contact-sales-banner", "title": "contact sales banner", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/contact-sales-button", "title": "contact sales button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/contact-sales-form", "title": "contact sales form", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/container", "title": "container", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/context-menu", "title": "context menu", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/context-switcher", "title": "context switcher", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/conversation-list", "title": "conversation list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/conversation-preview", "title": "conversation preview", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/conversion-chart", "title": "conversion chart", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/cookie-banner", "title": "cookie banner", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/cookie-category-list", "title": "cookie category list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/cookie-category-toggle", "title": "cookie category toggle", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/cookie-consent", "title": "cookie consent", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/cookie-details-table", "title": "cookie details table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/cookie-preferences-dialog", "title": "cookie preferences dialog", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/cookie-table", "title": "cookie table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/coordinates-input", "title": "coordinates input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/coordinates-picker", "title": "coordinates picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/copy-button", "title": "copy button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/copy-code-button", "title": "copy code button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/copy-secret-field", "title": "copy secret field", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/cost-breakdown-chart", "title": "cost breakdown chart", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/cost-summary", "title": "cost summary", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/counter", "title": "counter", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/country-calling-code-input", "title": "country calling code input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/country-calling-code-selector", "title": "country calling code selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/country-selector", "title": "country selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/coupon-input", "title": "coupon input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/credit-amount-input", "title": "credit amount input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/cron-builder", "title": "cron builder", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/cron-input", "title": "cron input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/csv-upload", "title": "csv upload", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/ctasection", "title": "ctasection", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/currency-input", "title": "currency input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/currency-selector", "title": "currency selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/current-password-input", "title": "current password input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/customer-logo", "title": "customer logo", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/customer-story-card", "title": "customer story card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/danger-button", "title": "danger button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/data-protection-card", "title": "data protection card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/data-retention-table", "title": "data retention table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/data-table", "title": "data table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/date-input", "title": "date input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/date-picker", "title": "date picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/date-range-calendar", "title": "date range calendar", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/date-range-picker", "title": "date range picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/date-range-slider", "title": "date range slider", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/date-time-input", "title": "date time input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/date-time-picker", "title": "date time picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/date-time-range-picker", "title": "date time range picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/decimal-input", "title": "decimal input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/definition-list", "title": "definition list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/delete-confirmation-dialog", "title": "delete confirmation dialog", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/delivery-preview", "title": "delivery preview", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/delivery-status-chart", "title": "delivery status chart", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/delivery-status-timeline", "title": "delivery status timeline", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/demo-request-form", "title": "demo request form", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/department-input", "title": "department input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/deprecated-feature-alert", "title": "deprecated feature alert", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/description-list", "title": "description list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/desktop-navigation", "title": "desktop navigation", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/developer-cta", "title": "developer cta", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/developer-hero", "title": "developer hero", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/developer-page-shell", "title": "developer page shell", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/developer-search", "title": "developer search", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/developers-mega-menu", "title": "developers mega menu", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/developers-menu", "title": "developers menu", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/device-card", "title": "device card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/disclosure", "title": "disclosure", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/discount-input", "title": "discount input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/display-heading", "title": "display heading", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/display-name-input", "title": "display name input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/divider", "title": "divider", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/document-preview", "title": "document preview", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/document-upload", "title": "document upload", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/domain-input", "title": "domain input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/do-not-sell-link", "title": "do not sell link", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/donut-chart", "title": "donut chart", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/download-action", "title": "download action", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/download-button", "title": "download button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/download-gate-form", "title": "download gate form", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/download-policy-button", "title": "download policy button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/download-resource-form", "title": "download resource form", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/drawer", "title": "drawer", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/dropdown-menu", "title": "dropdown menu", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/dropdown-navigation", "title": "dropdown navigation", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/duration-input", "title": "duration input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/duration-picker", "title": "duration picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/duration-slider", "title": "duration slider", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/elevated-card", "title": "elevated card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/email-body-editor", "title": "email body editor", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/email-composer", "title": "email composer", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/email-input", "title": "email input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/emoji-picker", "title": "emoji picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/empty-state", "title": "empty state", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/encryption-diagram", "title": "encryption diagram", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/enterprise-cta", "title": "enterprise cta", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/enterprise-hero", "title": "enterprise hero", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/enterprise-pricing-card", "title": "enterprise pricing card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/environment-selector", "title": "environment selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/environment-switcher", "title": "environment switcher", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/error-actions", "title": "error actions", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/error-card", "title": "error card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/error-code", "title": "error code", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/error-hero", "title": "error hero", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/error-illustration", "title": "error illustration", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/error-page", "title": "error page", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/error-page-shell", "title": "error page shell", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/error-state", "title": "error state", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/error-support-link", "title": "error support link", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/estimated-cost-summary", "title": "estimated cost summary", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/event-table", "title": "event table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/expandable-text", "title": "expandable text", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/expiry-date-time-picker", "title": "expiry date time picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/export-progress", "title": "export progress", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/external-link", "title": "external link", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/eyebrow-text", "title": "eyebrow text", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/factor-card", "title": "factor card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/fallback-route-builder", "title": "fallback route builder", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/fallback-route-diagram", "title": "fallback route diagram", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/faq", "title": "faq", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/faqaccordion", "title": "faqaccordion", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/favicon-upload", "title": "favicon upload", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/fax-input", "title": "fax input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/feature-card", "title": "feature card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/feature-checklist", "title": "feature checklist", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/feature-comparison-table", "title": "feature comparison table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/featured-blog-card", "title": "featured blog card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/feature-details-panel", "title": "feature details panel", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/feature-grid", "title": "feature grid", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/feature-icon-card", "title": "feature icon card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/feature-list", "title": "feature list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/feature-tabs", "title": "feature tabs", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/feature-timeline", "title": "feature timeline", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/feature-unavailable-state", "title": "feature unavailable state", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/field-actions", "title": "field actions", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/file-upload-primitive", "title": "file upload primitive", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/file-input", "title": "file input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/file-list", "title": "file list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/file-size-input", "title": "file size input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/file-size-label", "title": "file size label", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/file-type-badge", "title": "file type badge", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/file-upload", "title": "file upload", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/filterable-table", "title": "filterable table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/filter-bar", "title": "filter bar", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/filter-menu", "title": "filter menu", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/filter-search-input", "title": "filter search input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/final-cta", "title": "final cta", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/first-name-input", "title": "first name input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/flex", "title": "flex", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/font-picker", "title": "font picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/font-size-picker", "title": "font size picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/font-weight-picker", "title": "font weight picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/footer-language-switcher", "title": "footer language switcher", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/footer-status-indicator", "title": "footer status indicator", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/forbidden-page", "title": "forbidden page", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/forbidden-state", "title": "forbidden state", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/forgot-password-form", "title": "forgot password form", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/form", "title": "form", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/form-actions", "title": "form actions", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/form-alert", "title": "form alert", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/form-dialog", "title": "form dialog", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/form-error", "title": "form error", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/form-error-summary", "title": "form error summary", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/form-field", "title": "form field", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/form-grid", "title": "form grid", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/form-group", "title": "form group", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/form-help-text", "title": "form help text", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/form-label", "title": "form label", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/form-progress", "title": "form progress", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/form-row", "title": "form row", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/form-section", "title": "form section", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/full-bleed", "title": "full bleed", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/fullscreen-dialog", "title": "fullscreen dialog", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/funnel-chart", "title": "funnel chart", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/geo-chart", "title": "geo chart", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/geofence-editor", "title": "geofence editor", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/ghost-button", "title": "ghost button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/glass-card", "title": "glass card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/global-search", "title": "global search", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/gradient-cta", "title": "gradient cta", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/gradient-picker", "title": "gradient picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/gradient-stop-editor", "title": "gradient stop editor", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/grid", "title": "grid", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/guide-card", "title": "guide card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/guide-checklist", "title": "guide checklist", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/guide-difficulty-badge", "title": "guide difficulty badge", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/guide-grid", "title": "guide grid", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/guide-step", "title": "guide step", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/header", "title": "header", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/header-actions", "title": "header actions", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/health-indicator", "title": "health indicator", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/hero", "title": "hero", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/hero-actions", "title": "hero actions", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/hero-code-panel", "title": "hero code panel", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/hero-gradient-text", "title": "hero gradient text", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/hero-primary-action", "title": "hero primary action", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/hero-product-preview", "title": "hero product preview", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/hero-secondary-action", "title": "hero secondary action", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/hero-trust-text", "title": "hero trust text", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/hex-color-input", "title": "hex color input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/hidden-field", "title": "hidden field", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/highlight-text", "title": "highlight text", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/holiday-calendar", "title": "holiday calendar", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/hostname-input", "title": "hostname input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/hour-picker", "title": "hour picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/hsl-color-input", "title": "hsl color input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/hstack", "title": "hstack", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/html-editor", "title": "html editor", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/human-approval-step", "title": "human approval step", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/icon", "title": "icon", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/icon-button", "title": "icon button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/icon-picker", "title": "icon picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/icon-selector", "title": "icon selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/identifier-input", "title": "identifier input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/illustration", "title": "illustration", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/image-compression-preview", "title": "image compression preview", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/image-editor", "title": "image editor", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/image-preview-dialog", "title": "image preview dialog", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/image-selector", "title": "image selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/image-upload", "title": "image upload", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/import-progress", "title": "import progress", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/incident-alert", "title": "incident alert", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/incident-banner", "title": "incident banner", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/incident-card", "title": "incident card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/incident-list", "title": "incident list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/incident-response-flow", "title": "incident response flow", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/incident-severity-badge", "title": "incident severity badge", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/incident-timeline", "title": "incident timeline", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/industry-badge", "title": "industry badge", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/industry-selector", "title": "industry selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/info-card", "title": "info card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/inline", "title": "inline", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/inline-alert", "title": "inline alert", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/inline-code", "title": "inline code", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/input", "title": "input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/input-group", "title": "input group", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/inset-panel", "title": "inset panel", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/integer-input", "title": "integer input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/integration-card", "title": "integration card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/invoice-line-item", "title": "invoice line item", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/invoice-summary", "title": "invoice summary", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/ip-address-input", "title": "ip address input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/job-card", "title": "job card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/job-progress", "title": "job progress", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/job-title-input", "title": "job title input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/json-input", "title": "json input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/json-viewer", "title": "json viewer", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/key-value-table", "title": "key value table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/kyc-document-upload", "title": "kyc document upload", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/language-selector", "title": "language selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/language-switcher", "title": "language switcher", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/last-name-input", "title": "last name input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/latency-metric", "title": "latency metric", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/latitude-input", "title": "latitude input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/leadership-grid", "title": "leadership grid", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/lead-text", "title": "lead text", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/legal-acceptance-notice", "title": "legal acceptance notice", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/legal-bullet-list", "title": "legal bullet list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/legal-contact-block", "title": "legal contact block", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/legal-definition-list", "title": "legal definition list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/legal-document-header", "title": "legal document header", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/legal-document-layout", "title": "legal document layout", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/legal-hero", "title": "legal hero", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/legal-language-selector", "title": "legal language selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/legal-notice", "title": "legal notice", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/legal-page-shell", "title": "legal page shell", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/legal-print-button", "title": "legal print button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/legal-region-selector", "title": "legal region selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/legal-section", "title": "legal section", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/legal-summary", "title": "legal summary", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/legal-table", "title": "legal table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/legal-table-of-contents", "title": "legal table of contents", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/legal-version-badge", "title": "legal version badge", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/letter-spacing-picker", "title": "letter spacing picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/license-key-input", "title": "license key input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/lightbox", "title": "lightbox", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/line-chart", "title": "line chart", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/line-height-picker", "title": "line height picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/link", "title": "link", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/link-button", "title": "link button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/list", "title": "list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/loading-button", "title": "loading button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/locale-selector", "title": "locale selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/localized-route-link", "title": "localized route link", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/location-picker", "title": "location picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/logo", "title": "logo", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/logo-cloud", "title": "logo cloud", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/logo-upload", "title": "logo upload", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/logout-dialog", "title": "logout dialog", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/log-table", "title": "log table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/longitude-input", "title": "longitude input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/maintenance-alert", "title": "maintenance alert", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/maintenance-banner", "title": "maintenance banner", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/maintenance-card", "title": "maintenance card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/maintenance-page", "title": "maintenance page", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/maintenance-state", "title": "maintenance state", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/maintenance-window-picker", "title": "maintenance window picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/map-picker", "title": "map picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/markdown-editor", "title": "markdown editor", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/marketing-page-shell", "title": "marketing page shell", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/marketing-section-header", "title": "marketing section header", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/masked-secret-field", "title": "masked secret field", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/mega-menu", "title": "mega menu", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/member-list", "title": "member list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/mention-input", "title": "mention input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/message-character-counter", "title": "message character counter", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/message-composer", "title": "message composer", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/message-composer-preview", "title": "message composer preview", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/message-limit-input", "title": "message limit input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/message-preview", "title": "message preview", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/message-volume-slider", "title": "message volume slider", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/metric", "title": "metric", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/metric-card", "title": "metric card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/metric-grid", "title": "metric grid", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/metric-text", "title": "metric text", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/minute-picker", "title": "minute picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/mission-section", "title": "mission section", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/mobile-device-frame", "title": "mobile device frame", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "experimental" }, { "url": "/components/mobile-input", "title": "mobile input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "experimental" }, { "url": "/components/mobile-menu-button", "title": "mobile menu button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "experimental" }, { "url": "/components/mobile-navigation", "title": "mobile navigation", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "experimental" }, { "url": "/components/mobile-table-card", "title": "mobile table card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "experimental" }, { "url": "/components/modal", "title": "modal", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/monthly-volume-selector", "title": "monthly volume selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/month-picker", "title": "month picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/month-year-picker", "title": "month year picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/multi-file-upload", "title": "multi file upload", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/multiple-email-input", "title": "multiple email input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/multi-select", "title": "multi select", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/muted-text", "title": "muted text", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/name-input", "title": "name input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/narrow-container", "title": "narrow container", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/navigation", "title": "navigation", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/navigation-item", "title": "navigation item", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/navigation-mega-menu", "title": "navigation mega menu", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/new-badge", "title": "new badge", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/new-password-input", "title": "new password input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/newsletter-cta", "title": "newsletter cta", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/newsletter-form", "title": "newsletter form", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/no-results-state", "title": "no results state", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/not-found-page", "title": "not found page", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/not-found-state", "title": "not found state", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/notification-card", "title": "notification card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/notification-dot", "title": "notification dot", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/notification-list", "title": "notification list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/number-input", "title": "number input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/office-card", "title": "office card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/offline-page", "title": "offline page", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/offline-state", "title": "offline state", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/onboarding-progress", "title": "onboarding progress", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/one-time-secret-display", "title": "one time secret display", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/online-indicator", "title": "online indicator", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/opacity-slider", "title": "opacity slider", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/open-apicta", "title": "open apicta", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/optional-indicator", "title": "optional indicator", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/organization-selector", "title": "organization selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/otp-input", "title": "otp input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/otp-verification-form", "title": "otp verification form", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/outlined-card", "title": "outlined card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/page-alert", "title": "page alert", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/page-header", "title": "page header", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/page-heading", "title": "page heading", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/page-shell", "title": "page shell", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/page-skeleton", "title": "page skeleton", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/pagination", "title": "pagination", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/panel", "title": "panel", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/partner-application-form", "title": "partner application form", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/partner-logo-grid", "title": "partner logo grid", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/partner-program-card", "title": "partner program card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/passkey-button", "title": "passkey button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/password-input", "title": "password input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/password-requirement-list", "title": "password requirement list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/password-strength-meter", "title": "password strength meter", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/password-visibility-toggle", "title": "password visibility toggle", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/path-input", "title": "path input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/payment-method-card", "title": "payment method card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/pdf-preview", "title": "pdf preview", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/percentage-input", "title": "percentage input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/permission-selector", "title": "permission selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/phone-input", "title": "phone input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/pie-chart", "title": "pie chart", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/pill", "title": "pill", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/pin-input", "title": "pin input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/plain-text-editor", "title": "plain text editor", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/plan-cta", "title": "plan cta", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/plan-feature-list", "title": "plan feature list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/plan-limit-list", "title": "plan limit list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/plan-selector", "title": "plan selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/platform-pillar-card", "title": "platform pillar card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/policy-version-table", "title": "policy version table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/popover", "title": "popover", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/port-input", "title": "port input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/port-number-input", "title": "port number input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/positive-number-input", "title": "positive number input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/postal-code-input", "title": "postal code input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/postman-cta", "title": "postman cta", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/preset-date-range-picker", "title": "preset date range picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/press-release-card", "title": "press release card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/preview-badge", "title": "preview badge", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/previous-next-navigation", "title": "previous next navigation", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/price-input", "title": "price input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/price-range-slider", "title": "price range slider", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/price-text", "title": "price text", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/pricing-card", "title": "pricing card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/pricing-comparison-table", "title": "pricing comparison table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/pricing-contact-form", "title": "pricing contact form", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/pricing-feature-group", "title": "pricing feature group", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/pricing-grid", "title": "pricing grid", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/pricing-hero", "title": "pricing hero", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/pricing-plan-card", "title": "pricing plan card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/pricing-table", "title": "pricing table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/pricing-toggle", "title": "pricing toggle", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/primary-button", "title": "primary button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/print-action", "title": "print action", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/print-policy-button", "title": "print policy button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/priority-selector", "title": "priority selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/privacy-notice", "title": "privacy notice", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/product-architecture-diagram", "title": "product architecture diagram", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/product-card", "title": "product card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/product-category-section", "title": "product category section", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/product-cta", "title": "product cta", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/product-feature-list", "title": "product feature list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/product-grid", "title": "product grid", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/product-hero", "title": "product hero", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/product-icon", "title": "product icon", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/product-integration-list", "title": "product integration list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/product-list", "title": "product list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/product-logo", "title": "product logo", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/product-mega-menu", "title": "product mega menu", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/product-mini-card", "title": "product mini card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/product-navigation-card", "title": "product navigation card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/product-page-shell", "title": "product page shell", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/product-selector", "title": "product selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/products-mega-menu", "title": "products mega menu", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/product-status-badge", "title": "product status badge", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/product-use-case-list", "title": "product use case list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/progress", "title": "progress", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/progress-bar", "title": "progress bar", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/progress-chart", "title": "progress chart", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/progress-ring", "title": "progress ring", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/progress-slider", "title": "progress slider", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/project-card", "title": "project card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/project-selector", "title": "project selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/project-switcher", "title": "project switcher", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/promo-code-input", "title": "promo code input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/prompt-dialog", "title": "prompt dialog", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/provider-selector", "title": "provider selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/public-footer", "title": "public footer", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/public-header", "title": "public header", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/public-header-logo", "title": "public header logo", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/public-mobile-navigation", "title": "public mobile navigation", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "experimental" }, { "url": "/components/public-page-shell", "title": "public page shell", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/public-search", "title": "public search", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/publish-date-time-picker", "title": "publish date time picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/push-composer", "title": "push composer", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/push-notification-editor", "title": "push notification editor", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/qr-code", "title": "qr code", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/quantity-input", "title": "quantity input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/quantity-stepper", "title": "quantity stepper", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/quiet-hours-picker", "title": "quiet hours picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/quote-text", "title": "quote text", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/radio", "title": "radio", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/radio-group", "title": "radio group", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/range-input", "title": "range input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/range-slider", "title": "range slider", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/rate-limited-state", "title": "rate limited state", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/rate-limit-input", "title": "rate limit input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/rate-limit-page", "title": "rate limit page", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/rate-table", "title": "rate table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/rating-slider", "title": "rating slider", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/recipient-selector", "title": "recipient selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/recovery-code-form", "title": "recovery code form", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/recovery-code-input", "title": "recovery code input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/recurrence-rule-builder", "title": "recurrence rule builder", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/recurring-schedule-picker", "title": "recurring schedule picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/redirect-uri-input", "title": "redirect uri input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/reference-input", "title": "reference input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/regex-input", "title": "regex input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/regional-privacy-banner", "title": "regional privacy banner", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/region-availability-table", "title": "region availability table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/region-selector", "title": "region selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/region-unavailable-alert", "title": "region unavailable alert", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/region-unavailable-state", "title": "region unavailable state", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/reject-optional-cookies-button", "title": "reject optional cookies button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/reopen-cookie-settings-button", "title": "reopen cookie settings button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/report-card", "title": "report card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/request-response-viewer", "title": "request response viewer", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/request-viewer", "title": "request viewer", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/required-indicator", "title": "required indicator", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/reset-password-form", "title": "reset password form", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/resizable-panel", "title": "resizable panel", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/resource-card", "title": "resource card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/resource-download-card", "title": "resource download card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/resource-page-shell", "title": "resource page shell", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/resource-search", "title": "resource search", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/resources-mega-menu", "title": "resources mega menu", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/resource-type-badge", "title": "resource type badge", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/response-viewer", "title": "response viewer", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/responsible-disclosure-cta", "title": "responsible disclosure cta", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/responsive-table", "title": "responsive table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/results-section", "title": "results section", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/retention-table", "title": "retention table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/retry-count-input", "title": "retry count input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/revenue-chart", "title": "revenue chart", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/rgb-color-input", "title": "rgb color input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/rich-text-editor", "title": "rich text editor", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/rich-text-input", "title": "rich text input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/role-selector", "title": "role selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/rolling-date-range-picker", "title": "rolling date range picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/save-cookie-preferences-button", "title": "save cookie preferences button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/saved-filter-selector", "title": "saved filter selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/scheduled-date-time-picker", "title": "scheduled date time picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/schedule-message-picker", "title": "schedule message picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/schedule-picker", "title": "schedule picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/screenshot-frame", "title": "screenshot frame", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/scroll-area", "title": "scroll area", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/sdkcard", "title": "sdkcard", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/sdk-language-selector", "title": "sdk language selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/sdklanguage-tabs", "title": "sdklanguage tabs", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/sdktabs", "title": "sdktabs", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/search-button", "title": "search button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/search-category-tabs", "title": "search category tabs", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/search-dialog", "title": "search dialog", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/search-empty-state", "title": "search empty state", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/search-input", "title": "search input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/search-loading-state", "title": "search loading state", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/search-result-item", "title": "search result item", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/secondary-button", "title": "secondary button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/second-picker", "title": "second picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/secret-display", "title": "secret display", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/secret-input", "title": "secret input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/secret-reveal-dialog", "title": "secret reveal dialog", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/section", "title": "section", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/section-actions", "title": "section actions", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/section-header", "title": "section header", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/section-heading", "title": "section heading", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/security-alert", "title": "security alert", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/security-contact-card", "title": "security contact card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/security-feature-card", "title": "security feature card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/security-hero", "title": "security hero", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/security-pillar-grid", "title": "security pillar grid", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/security-practice-list", "title": "security practice list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/security-report-form", "title": "security report form", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/select", "title": "select", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/sender-id-input", "title": "sender id input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/server-error-page", "title": "server error page", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/service-level-table", "title": "service level table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/service-status-badge", "title": "service status badge", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/service-status-list", "title": "service status list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/service-status-row", "title": "service status row", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/session-card", "title": "session card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/session-expired-dialog", "title": "session expired dialog", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/setup-checklist", "title": "setup checklist", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/severity-selector", "title": "severity selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/shadow-picker", "title": "shadow picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/share-action", "title": "share action", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/share-button", "title": "share button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/sidebar-layout", "title": "sidebar layout", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/side-panel", "title": "side panel", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/sign-in-form", "title": "sign in form", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/sign-in-link", "title": "sign in link", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/sign-up-form", "title": "sign up form", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/site-search", "title": "site search", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/skeleton", "title": "skeleton", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/skip-link", "title": "skip link", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/sla-table", "title": "sla table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/slider", "title": "slider", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/slug-input", "title": "slug input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/small-text", "title": "small text", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/smart-route-diagram", "title": "smart route diagram", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/sms-composer", "title": "sms composer", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/sms-message-editor", "title": "sms message editor", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/sms-segment-counter", "title": "sms segment counter", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/social-share", "title": "social share", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/solution-hero", "title": "solution hero", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/solution-page-shell", "title": "solution page shell", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/solution-section", "title": "solution section", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/solutions-mega-menu", "title": "solutions mega menu", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/sortable-table", "title": "sortable table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/spacer", "title": "spacer", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/spinner", "title": "spinner", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/split-button", "title": "split button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/split-cta", "title": "split cta", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/split-hero", "title": "split hero", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/split-layout", "title": "split layout", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/split-section-header", "title": "split section header", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/stack", "title": "stack", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/start-free-button", "title": "start free button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/stat-card", "title": "stat card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/state-selector", "title": "state selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/status-badge", "title": "status badge", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/status-banner", "title": "status banner", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/status-page-shell", "title": "status page shell", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/status-selector", "title": "status selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/status-subscribe-form", "title": "status subscribe form", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/status-table", "title": "status table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/step-navigation", "title": "step navigation", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/stepper", "title": "stepper", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/stepper-input", "title": "stepper input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/step-up-authentication-dialog", "title": "step up authentication dialog", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/sticker-picker", "title": "sticker picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/sticky", "title": "sticky", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/sticky-layout", "title": "sticky layout", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/street-address-input", "title": "street address input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/subdomain-input", "title": "subdomain input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/subject-input", "title": "subject input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/subprocessor-table", "title": "subprocessor table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/subsection-heading", "title": "subsection heading", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/success-card", "title": "success card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/success-state", "title": "success state", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/support-request-form", "title": "support request form", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/surface", "title": "surface", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/switch", "title": "switch", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/table", "title": "table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/table-header", "title": "table header", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/table-row", "title": "table row", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/table-skeleton", "title": "table skeleton", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/tabs", "title": "tabs", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/tag", "title": "tag", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/tag-input", "title": "tag input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/tax-notice", "title": "tax notice", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/tax-rate-input", "title": "tax rate input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/team-member-card", "title": "team member card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/team-size-selector", "title": "team size selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/template-card", "title": "template card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/template-selector", "title": "template selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/template-variable-input", "title": "template variable input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/tenant-isolation-diagram", "title": "tenant isolation diagram", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/terminal-block", "title": "terminal block", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/tertiary-button", "title": "tertiary button", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/testimonial-card", "title": "testimonial card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/testimonial-carousel", "title": "testimonial carousel", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/test-message-dialog", "title": "test message dialog", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/textarea", "title": "textarea", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/text-input", "title": "text input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/text-link", "title": "text link", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/text-skeleton", "title": "text skeleton", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/theme-toggle", "title": "theme toggle", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/theme-color-picker", "title": "theme color picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/theme-switcher", "title": "theme switcher", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/time-input", "title": "time input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/timeline", "title": "timeline", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/timeline-chart", "title": "timeline chart", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/timeline-item", "title": "timeline item", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/timeout-input", "title": "timeout input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/time-picker", "title": "time picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/time-range-picker", "title": "time range picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/timezone-aware-time-picker", "title": "timezone aware time picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/timezone-selector", "title": "timezone selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/toast", "title": "toast", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/toast-action", "title": "toast action", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/toast-host", "title": "toast host", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/toast-icon", "title": "toast icon", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/toast-progress", "title": "toast progress", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/toggle", "title": "toggle", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/toggle-group", "title": "toggle group", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/token-input", "title": "token input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/tooltip", "title": "tooltip", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/totp-verification-form", "title": "totp verification form", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/translated-text", "title": "translated text", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/tree-table", "title": "tree table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/trend-indicator", "title": "trend indicator", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/truncated-text", "title": "truncated text", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/trust-badge-list", "title": "trust badge list", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/typography", "title": "typography", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/unavailable-region-state", "title": "unavailable region state", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/unified-timeline-preview", "title": "unified timeline preview", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/unsaved-changes-dialog", "title": "unsaved changes dialog", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/upload-item", "title": "upload item", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/upload-preview", "title": "upload preview", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/upload-progress", "title": "upload progress", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/uptime-chart", "title": "uptime chart", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/uptime-metric", "title": "uptime metric", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/url-input", "title": "url input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/usage-pricing-table", "title": "usage pricing table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/use-case-selector", "title": "use case selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/user-card", "title": "user card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/username-input", "title": "username input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/value-card", "title": "value card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/values-grid", "title": "values grid", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/verification-code-input", "title": "verification code input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/verified-badge", "title": "verified badge", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/version-selector", "title": "version selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/vertical-tabs", "title": "vertical tabs", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/video-card", "title": "video card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/video-preview-dialog", "title": "video preview dialog", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/video-upload", "title": "video upload", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/virtualized-table", "title": "virtualized table", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/vision-section", "title": "vision section", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/visually-hidden", "title": "visually hidden", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/voice-script-composer", "title": "voice script composer", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/voice-script-editor", "title": "voice script editor", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/volume-input", "title": "volume input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/volume-slider", "title": "volume slider", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/warning-card", "title": "warning card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/webhook-event-card", "title": "webhook event card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/webhook-flow-diagram", "title": "webhook flow diagram", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/webhook-payload-viewer", "title": "webhook payload viewer", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/webhook-url-input", "title": "webhook url input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/webinar-card", "title": "webinar card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/webinar-registration-form", "title": "webinar registration form", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/well", "title": "well", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/whats-app-composer", "title": "whats app composer", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/whats-app-number-input", "title": "whats app number input", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/whats-app-template-editor", "title": "whats app template editor", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/wide-container", "title": "wide container", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/wizard", "title": "wizard", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/wizard-header", "title": "wizard header", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/wizard-navigation", "title": "wizard navigation", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/workflow-canvas-preview", "title": "workflow canvas preview", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/workflow-progress", "title": "workflow progress", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/workspace-card", "title": "workspace card", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/workspace-selector", "title": "workspace selector", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/workspace-switcher", "title": "workspace switcher", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/year-picker", "title": "year picker", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" }, { "url": "/components/zoom-slider", "title": "zoom slider", "section": "portal", - "version": "0.2.68", + "version": "0.2.69", "stability": "preview" } ] diff --git a/public/llms-full.txt b/public/llms-full.txt index 80ea756a..b492e81d 100644 --- a/public/llms-full.txt +++ b/public/llms-full.txt @@ -1,4 +1,4 @@ -# WRNexusJS 0.2.68 comprehensive documentation index +# WRNexusJS 0.2.69 comprehensive documentation index Status: Private Developer Preview. Runtime: Bun. UI language: .wrn. This is the documentation application, not the framework monorepo. @@ -40,7 +40,7 @@ This is the documentation application, not the framework monorepo. - https://wrnexusjs.dev/benchmarks - https://wrnexusjs.dev/roadmap - https://wrnexusjs.dev/changelog -- https://wrnexusjs.dev/releases/0.2.68 +- https://wrnexusjs.dev/releases/0.2.69 - https://wrnexusjs.dev/security - https://wrnexusjs.dev/support - https://wrnexusjs.dev/license diff --git a/public/llms.txt b/public/llms.txt index 26dd5178..cae4329e 100644 --- a/public/llms.txt +++ b/public/llms.txt @@ -1,4 +1,4 @@ -# WRNexusJS documentation 0.2.68 +# WRNexusJS documentation 0.2.69 Status: Private Developer Preview. This site documents 26 release-aligned packages. @@ -12903,7 +12903,7 @@ Events: none # Installed package documentation -The following README files and declarations come from the installed private 0.2.68 release. +The following README files and declarations come from the installed private 0.2.69 release. ## @wrnexus/ai diff --git a/public/sitemap.xml b/public/sitemap.xml index 8540fb43..7af014ad 100644 --- a/public/sitemap.xml +++ b/public/sitemap.xml @@ -1,2 +1,2 @@ -https://wrnexusjs.dev/https://wrnexusjs.dev/accesshttps://wrnexusjs.dev/getting-startedhttps://wrnexusjs.dev/tutorialhttps://wrnexusjs.dev/architecturehttps://wrnexusjs.dev/languagehttps://wrnexusjs.dev/packageshttps://wrnexusjs.dev/componentshttps://wrnexusjs.dev/guides/project-structurehttps://wrnexusjs.dev/guides/routinghttps://wrnexusjs.dev/guides/pages-and-componentshttps://wrnexusjs.dev/guides/server-datahttps://wrnexusjs.dev/guides/api-routeshttps://wrnexusjs.dev/guides/middlewarehttps://wrnexusjs.dev/guides/forms-and-validationhttps://wrnexusjs.dev/guides/authenticationhttps://wrnexusjs.dev/guides/authorizationhttps://wrnexusjs.dev/guides/securityhttps://wrnexusjs.dev/guides/databasehttps://wrnexusjs.dev/guides/uploadshttps://wrnexusjs.dev/guides/realtimehttps://wrnexusjs.dev/guides/pubsubhttps://wrnexusjs.dev/guides/queueshttps://wrnexusjs.dev/guides/testinghttps://wrnexusjs.dev/guides/workspaces-and-gatewayhttps://wrnexusjs.dev/guides/deploymenthttps://wrnexusjs.dev/guides/configuration-and-profileshttps://wrnexusjs.dev/guides/i18n-and-themeshttps://wrnexusjs.dev/guides/mobilehttps://wrnexusjs.dev/guides/observabilityhttps://wrnexusjs.dev/guides/upgradinghttps://wrnexusjs.dev/guides/troubleshootinghttps://wrnexusjs.dev/exampleshttps://wrnexusjs.dev/showcasehttps://wrnexusjs.dev/benchmarkshttps://wrnexusjs.dev/roadmaphttps://wrnexusjs.dev/changeloghttps://wrnexusjs.dev/releases/0.2.68https://wrnexusjs.dev/securityhttps://wrnexusjs.dev/supporthttps://wrnexusjs.dev/licensehttps://wrnexusjs.dev/searchhttps://wrnexusjs.dev/404https://wrnexusjs.dev/packages/aihttps://wrnexusjs.dev/packages/authzhttps://wrnexusjs.dev/packages/clihttps://wrnexusjs.dev/packages/compilerhttps://wrnexusjs.dev/packages/corehttps://wrnexusjs.dev/packages/csrhttps://wrnexusjs.dev/packages/dbhttps://wrnexusjs.dev/packages/dev-serverhttps://wrnexusjs.dev/packages/encryptionhttps://wrnexusjs.dev/packages/helpershttps://wrnexusjs.dev/packages/i18nhttps://wrnexusjs.dev/packages/jwthttps://wrnexusjs.dev/packages/mobilehttps://wrnexusjs.dev/packages/nativehttps://wrnexusjs.dev/packages/oauthhttps://wrnexusjs.dev/packages/pubsubhttps://wrnexusjs.dev/packages/queuehttps://wrnexusjs.dev/packages/reactivehttps://wrnexusjs.dev/packages/routerhttps://wrnexusjs.dev/packages/ssrhttps://wrnexusjs.dev/packages/styleshttps://wrnexusjs.dev/packages/testhttps://wrnexusjs.dev/packages/trackinghttps://wrnexusjs.dev/packages/uihttps://wrnexusjs.dev/packages/uploaderhttps://wrnexusjs.dev/packages/validationhttps://wrnexusjs.dev/components/accept-all-cookies-buttonhttps://wrnexusjs.dev/components/accessible-accordionhttps://wrnexusjs.dev/components/accessible-carouselhttps://wrnexusjs.dev/components/accessible-chart-summaryhttps://wrnexusjs.dev/components/accessible-dialoghttps://wrnexusjs.dev/components/accessible-error-summaryhttps://wrnexusjs.dev/components/accessible-iconhttps://wrnexusjs.dev/components/accessible-menuhttps://wrnexusjs.dev/components/accessible-tabshttps://wrnexusjs.dev/components/accessible-tooltiphttps://wrnexusjs.dev/components/accordionhttps://wrnexusjs.dev/components/account-menuhttps://wrnexusjs.dev/components/account-status-bannerhttps://wrnexusjs.dev/components/action-menuhttps://wrnexusjs.dev/components/active-filter-listhttps://wrnexusjs.dev/components/activity-listhttps://wrnexusjs.dev/components/add-on-cardhttps://wrnexusjs.dev/components/address-inputhttps://wrnexusjs.dev/components/address-previewhttps://wrnexusjs.dev/components/advanced-filter-builderhttps://wrnexusjs.dev/components/alerthttps://wrnexusjs.dev/components/alert-dialoghttps://wrnexusjs.dev/components/amount-inputhttps://wrnexusjs.dev/components/analytics-dashboard-previewhttps://wrnexusjs.dev/components/anchor-navigationhttps://wrnexusjs.dev/components/announcement-barhttps://wrnexusjs.dev/components/apartment-inputhttps://wrnexusjs.dev/components/api-authentication-noticehttps://wrnexusjs.dev/components/api-endpoint-cardhttps://wrnexusjs.dev/components/api-error-examplehttps://wrnexusjs.dev/components/api-header-tablehttps://wrnexusjs.dev/components/api-key-create-dialoghttps://wrnexusjs.dev/components/api-key-displayhttps://wrnexusjs.dev/components/api-key-inputhttps://wrnexusjs.dev/components/api-method-badgehttps://wrnexusjs.dev/components/api-parameter-tablehttps://wrnexusjs.dev/components/api-rate-limit-noticehttps://wrnexusjs.dev/components/api-request-examplehttps://wrnexusjs.dev/components/api-response-examplehttps://wrnexusjs.dev/components/api-schema-tablehttps://wrnexusjs.dev/components/api-schema-viewerhttps://wrnexusjs.dev/components/api-version-badgehttps://wrnexusjs.dev/components/app-headerhttps://wrnexusjs.dev/components/architecture-sectionhttps://wrnexusjs.dev/components/area-charthttps://wrnexusjs.dev/components/article-herohttps://wrnexusjs.dev/components/article-layouthttps://wrnexusjs.dev/components/article-newsletter-ctahttps://wrnexusjs.dev/components/article-page-shellhttps://wrnexusjs.dev/components/article-share-actionshttps://wrnexusjs.dev/components/aspect-ratiohttps://wrnexusjs.dev/components/asset-cardhttps://wrnexusjs.dev/components/attachment-pickerhttps://wrnexusjs.dev/components/attachment-uploadhttps://wrnexusjs.dev/components/audio-uploadhttps://wrnexusjs.dev/components/audit-log-previewhttps://wrnexusjs.dev/components/audit-tablehttps://wrnexusjs.dev/components/authenticator-code-inputhttps://wrnexusjs.dev/components/author-avatarhttps://wrnexusjs.dev/components/author-cardhttps://wrnexusjs.dev/components/authorized-application-cardhttps://wrnexusjs.dev/components/auto-gridhttps://wrnexusjs.dev/components/automation-example-cardhttps://wrnexusjs.dev/components/availability-calendarhttps://wrnexusjs.dev/components/avatarhttps://wrnexusjs.dev/components/avatar-grouphttps://wrnexusjs.dev/components/avatar-uploadhttps://wrnexusjs.dev/components/back-buttonhttps://wrnexusjs.dev/components/back-to-tophttps://wrnexusjs.dev/components/badgehttps://wrnexusjs.dev/components/bank-transfer-detailshttps://wrnexusjs.dev/components/bannerhttps://wrnexusjs.dev/components/bar-charthttps://wrnexusjs.dev/components/beta-badgehttps://wrnexusjs.dev/components/billing-address-formhttps://wrnexusjs.dev/components/billing-examplehttps://wrnexusjs.dev/components/billing-period-togglehttps://wrnexusjs.dev/components/blackout-date-pickerhttps://wrnexusjs.dev/components/blog-cardhttps://wrnexusjs.dev/components/blog-gridhttps://wrnexusjs.dev/components/blog-listhttps://wrnexusjs.dev/components/blog-searchhttps://wrnexusjs.dev/components/body-texthttps://wrnexusjs.dev/components/border-radius-pickerhttps://wrnexusjs.dev/components/bottom-navigationhttps://wrnexusjs.dev/components/brand-color-pickerhttps://wrnexusjs.dev/components/brand-selectorhttps://wrnexusjs.dev/components/breadcrumbshttps://wrnexusjs.dev/components/browser-framehttps://wrnexusjs.dev/components/budget-range-sliderhttps://wrnexusjs.dev/components/budget-selectorhttps://wrnexusjs.dev/components/business-hours-pickerhttps://wrnexusjs.dev/components/buttonhttps://wrnexusjs.dev/components/button-grouphttps://wrnexusjs.dev/components/button-selectorhttps://wrnexusjs.dev/components/calendarhttps://wrnexusjs.dev/components/calendar-gridhttps://wrnexusjs.dev/components/calendar-headerhttps://wrnexusjs.dev/components/calendar-navigationhttps://wrnexusjs.dev/components/callback-url-inputhttps://wrnexusjs.dev/components/campaign-cardhttps://wrnexusjs.dev/components/campaign-performance-previewhttps://wrnexusjs.dev/components/campaign-progresshttps://wrnexusjs.dev/components/capability-gridhttps://wrnexusjs.dev/components/captcha-fieldhttps://wrnexusjs.dev/components/cardhttps://wrnexusjs.dev/components/card-payment-formhttps://wrnexusjs.dev/components/card-selectorhttps://wrnexusjs.dev/components/card-skeletonhttps://wrnexusjs.dev/components/career-application-formhttps://wrnexusjs.dev/components/career-benefits-gridhttps://wrnexusjs.dev/components/carouselhttps://wrnexusjs.dev/components/case-study-cardhttps://wrnexusjs.dev/components/case-study-herohttps://wrnexusjs.dev/components/case-study-previewhttps://wrnexusjs.dev/components/centered-ctahttps://wrnexusjs.dev/components/centered-herohttps://wrnexusjs.dev/components/centered-section-headerhttps://wrnexusjs.dev/components/certificate-uploadhttps://wrnexusjs.dev/components/certification-badgehttps://wrnexusjs.dev/components/challenge-sectionhttps://wrnexusjs.dev/components/channel-badgehttps://wrnexusjs.dev/components/channel-cardhttps://wrnexusjs.dev/components/channel-comparison-charthttps://wrnexusjs.dev/components/channel-comparison-tablehttps://wrnexusjs.dev/components/channel-fallback-diagramhttps://wrnexusjs.dev/components/channel-flowhttps://wrnexusjs.dev/components/channel-iconhttps://wrnexusjs.dev/components/channel-rate-tablehttps://wrnexusjs.dev/components/channel-selectorhttps://wrnexusjs.dev/components/character-counterhttps://wrnexusjs.dev/components/chart-empty-statehttps://wrnexusjs.dev/components/chart-tooltiphttps://wrnexusjs.dev/components/checkboxhttps://wrnexusjs.dev/components/checkbox-grouphttps://wrnexusjs.dev/components/checklisthttps://wrnexusjs.dev/components/checklist-progresshttps://wrnexusjs.dev/components/chiphttps://wrnexusjs.dev/components/chip-inputhttps://wrnexusjs.dev/components/circular-progresshttps://wrnexusjs.dev/components/city-selectorhttps://wrnexusjs.dev/components/clear-filters-buttonhttps://wrnexusjs.dev/components/clickable-cardhttps://wrnexusjs.dev/components/close-buttonhttps://wrnexusjs.dev/components/clusterhttps://wrnexusjs.dev/components/codehttps://wrnexusjs.dev/components/code-blockhttps://wrnexusjs.dev/components/code-copy-buttonhttps://wrnexusjs.dev/components/code-headerhttps://wrnexusjs.dev/components/code-inputhttps://wrnexusjs.dev/components/code-language-badgehttps://wrnexusjs.dev/components/code-tabshttps://wrnexusjs.dev/components/code-texthttps://wrnexusjs.dev/components/cohort-charthttps://wrnexusjs.dev/components/color-gridhttps://wrnexusjs.dev/components/color-hex-inputhttps://wrnexusjs.dev/components/color-pickerhttps://wrnexusjs.dev/components/color-selectorhttps://wrnexusjs.dev/components/color-swatchhttps://wrnexusjs.dev/components/comboboxhttps://wrnexusjs.dev/components/coming-soon-badgehttps://wrnexusjs.dev/components/coming-soon-statehttps://wrnexusjs.dev/components/command-blockhttps://wrnexusjs.dev/components/command-menuhttps://wrnexusjs.dev/components/command-search-inputhttps://wrnexusjs.dev/components/company-herohttps://wrnexusjs.dev/components/company-name-inputhttps://wrnexusjs.dev/components/company-page-shellhttps://wrnexusjs.dev/components/company-size-selectorhttps://wrnexusjs.dev/components/comparison-date-range-pickerhttps://wrnexusjs.dev/components/comparison-tablehttps://wrnexusjs.dev/components/completion-meterhttps://wrnexusjs.dev/components/compliance-badge-listhttps://wrnexusjs.dev/components/compliance-program-cardhttps://wrnexusjs.dev/components/confirmation-dialoghttps://wrnexusjs.dev/components/confirm-password-inputhttps://wrnexusjs.dev/components/connected-account-cardhttps://wrnexusjs.dev/components/connection-cardhttps://wrnexusjs.dev/components/consent-timeline-previewhttps://wrnexusjs.dev/components/contact-cardhttps://wrnexusjs.dev/components/contact-ctahttps://wrnexusjs.dev/components/contact-formhttps://wrnexusjs.dev/components/contact-herohttps://wrnexusjs.dev/components/contact-page-shellhttps://wrnexusjs.dev/components/contact-sales-bannerhttps://wrnexusjs.dev/components/contact-sales-buttonhttps://wrnexusjs.dev/components/contact-sales-formhttps://wrnexusjs.dev/components/containerhttps://wrnexusjs.dev/components/context-menuhttps://wrnexusjs.dev/components/context-switcherhttps://wrnexusjs.dev/components/conversation-listhttps://wrnexusjs.dev/components/conversation-previewhttps://wrnexusjs.dev/components/conversion-charthttps://wrnexusjs.dev/components/cookie-bannerhttps://wrnexusjs.dev/components/cookie-category-listhttps://wrnexusjs.dev/components/cookie-category-togglehttps://wrnexusjs.dev/components/cookie-consenthttps://wrnexusjs.dev/components/cookie-details-tablehttps://wrnexusjs.dev/components/cookie-preferences-dialoghttps://wrnexusjs.dev/components/cookie-tablehttps://wrnexusjs.dev/components/coordinates-inputhttps://wrnexusjs.dev/components/coordinates-pickerhttps://wrnexusjs.dev/components/copy-buttonhttps://wrnexusjs.dev/components/copy-code-buttonhttps://wrnexusjs.dev/components/copy-secret-fieldhttps://wrnexusjs.dev/components/cost-breakdown-charthttps://wrnexusjs.dev/components/cost-summaryhttps://wrnexusjs.dev/components/counterhttps://wrnexusjs.dev/components/country-calling-code-inputhttps://wrnexusjs.dev/components/country-calling-code-selectorhttps://wrnexusjs.dev/components/country-selectorhttps://wrnexusjs.dev/components/coupon-inputhttps://wrnexusjs.dev/components/credit-amount-inputhttps://wrnexusjs.dev/components/cron-builderhttps://wrnexusjs.dev/components/cron-inputhttps://wrnexusjs.dev/components/csv-uploadhttps://wrnexusjs.dev/components/ctasectionhttps://wrnexusjs.dev/components/currency-inputhttps://wrnexusjs.dev/components/currency-selectorhttps://wrnexusjs.dev/components/current-password-inputhttps://wrnexusjs.dev/components/customer-logohttps://wrnexusjs.dev/components/customer-story-cardhttps://wrnexusjs.dev/components/danger-buttonhttps://wrnexusjs.dev/components/data-protection-cardhttps://wrnexusjs.dev/components/data-retention-tablehttps://wrnexusjs.dev/components/data-tablehttps://wrnexusjs.dev/components/date-inputhttps://wrnexusjs.dev/components/date-pickerhttps://wrnexusjs.dev/components/date-range-calendarhttps://wrnexusjs.dev/components/date-range-pickerhttps://wrnexusjs.dev/components/date-range-sliderhttps://wrnexusjs.dev/components/date-time-inputhttps://wrnexusjs.dev/components/date-time-pickerhttps://wrnexusjs.dev/components/date-time-range-pickerhttps://wrnexusjs.dev/components/decimal-inputhttps://wrnexusjs.dev/components/definition-listhttps://wrnexusjs.dev/components/delete-confirmation-dialoghttps://wrnexusjs.dev/components/delivery-previewhttps://wrnexusjs.dev/components/delivery-status-charthttps://wrnexusjs.dev/components/delivery-status-timelinehttps://wrnexusjs.dev/components/demo-request-formhttps://wrnexusjs.dev/components/department-inputhttps://wrnexusjs.dev/components/deprecated-feature-alerthttps://wrnexusjs.dev/components/description-listhttps://wrnexusjs.dev/components/desktop-navigationhttps://wrnexusjs.dev/components/developer-ctahttps://wrnexusjs.dev/components/developer-herohttps://wrnexusjs.dev/components/developer-page-shellhttps://wrnexusjs.dev/components/developer-searchhttps://wrnexusjs.dev/components/developers-mega-menuhttps://wrnexusjs.dev/components/developers-menuhttps://wrnexusjs.dev/components/device-cardhttps://wrnexusjs.dev/components/disclosurehttps://wrnexusjs.dev/components/discount-inputhttps://wrnexusjs.dev/components/display-headinghttps://wrnexusjs.dev/components/display-name-inputhttps://wrnexusjs.dev/components/dividerhttps://wrnexusjs.dev/components/document-previewhttps://wrnexusjs.dev/components/document-uploadhttps://wrnexusjs.dev/components/domain-inputhttps://wrnexusjs.dev/components/do-not-sell-linkhttps://wrnexusjs.dev/components/donut-charthttps://wrnexusjs.dev/components/download-actionhttps://wrnexusjs.dev/components/download-buttonhttps://wrnexusjs.dev/components/download-gate-formhttps://wrnexusjs.dev/components/download-policy-buttonhttps://wrnexusjs.dev/components/download-resource-formhttps://wrnexusjs.dev/components/drawerhttps://wrnexusjs.dev/components/dropdown-menuhttps://wrnexusjs.dev/components/dropdown-navigationhttps://wrnexusjs.dev/components/duration-inputhttps://wrnexusjs.dev/components/duration-pickerhttps://wrnexusjs.dev/components/duration-sliderhttps://wrnexusjs.dev/components/elevated-cardhttps://wrnexusjs.dev/components/email-body-editorhttps://wrnexusjs.dev/components/email-composerhttps://wrnexusjs.dev/components/email-inputhttps://wrnexusjs.dev/components/emoji-pickerhttps://wrnexusjs.dev/components/empty-statehttps://wrnexusjs.dev/components/encryption-diagramhttps://wrnexusjs.dev/components/enterprise-ctahttps://wrnexusjs.dev/components/enterprise-herohttps://wrnexusjs.dev/components/enterprise-pricing-cardhttps://wrnexusjs.dev/components/environment-selectorhttps://wrnexusjs.dev/components/environment-switcherhttps://wrnexusjs.dev/components/error-actionshttps://wrnexusjs.dev/components/error-cardhttps://wrnexusjs.dev/components/error-codehttps://wrnexusjs.dev/components/error-herohttps://wrnexusjs.dev/components/error-illustrationhttps://wrnexusjs.dev/components/error-pagehttps://wrnexusjs.dev/components/error-page-shellhttps://wrnexusjs.dev/components/error-statehttps://wrnexusjs.dev/components/error-support-linkhttps://wrnexusjs.dev/components/estimated-cost-summaryhttps://wrnexusjs.dev/components/event-tablehttps://wrnexusjs.dev/components/expandable-texthttps://wrnexusjs.dev/components/expiry-date-time-pickerhttps://wrnexusjs.dev/components/export-progresshttps://wrnexusjs.dev/components/external-linkhttps://wrnexusjs.dev/components/eyebrow-texthttps://wrnexusjs.dev/components/factor-cardhttps://wrnexusjs.dev/components/fallback-route-builderhttps://wrnexusjs.dev/components/fallback-route-diagramhttps://wrnexusjs.dev/components/faqhttps://wrnexusjs.dev/components/faqaccordionhttps://wrnexusjs.dev/components/favicon-uploadhttps://wrnexusjs.dev/components/fax-inputhttps://wrnexusjs.dev/components/feature-cardhttps://wrnexusjs.dev/components/feature-checklisthttps://wrnexusjs.dev/components/feature-comparison-tablehttps://wrnexusjs.dev/components/featured-blog-cardhttps://wrnexusjs.dev/components/feature-details-panelhttps://wrnexusjs.dev/components/feature-gridhttps://wrnexusjs.dev/components/feature-icon-cardhttps://wrnexusjs.dev/components/feature-listhttps://wrnexusjs.dev/components/feature-tabshttps://wrnexusjs.dev/components/feature-timelinehttps://wrnexusjs.dev/components/feature-unavailable-statehttps://wrnexusjs.dev/components/field-actionshttps://wrnexusjs.dev/components/file-upload-primitivehttps://wrnexusjs.dev/components/file-inputhttps://wrnexusjs.dev/components/file-listhttps://wrnexusjs.dev/components/file-size-inputhttps://wrnexusjs.dev/components/file-size-labelhttps://wrnexusjs.dev/components/file-type-badgehttps://wrnexusjs.dev/components/file-uploadhttps://wrnexusjs.dev/components/filterable-tablehttps://wrnexusjs.dev/components/filter-barhttps://wrnexusjs.dev/components/filter-menuhttps://wrnexusjs.dev/components/filter-search-inputhttps://wrnexusjs.dev/components/final-ctahttps://wrnexusjs.dev/components/first-name-inputhttps://wrnexusjs.dev/components/flexhttps://wrnexusjs.dev/components/font-pickerhttps://wrnexusjs.dev/components/font-size-pickerhttps://wrnexusjs.dev/components/font-weight-pickerhttps://wrnexusjs.dev/components/footer-language-switcherhttps://wrnexusjs.dev/components/footer-status-indicatorhttps://wrnexusjs.dev/components/forbidden-pagehttps://wrnexusjs.dev/components/forbidden-statehttps://wrnexusjs.dev/components/forgot-password-formhttps://wrnexusjs.dev/components/formhttps://wrnexusjs.dev/components/form-actionshttps://wrnexusjs.dev/components/form-alerthttps://wrnexusjs.dev/components/form-dialoghttps://wrnexusjs.dev/components/form-errorhttps://wrnexusjs.dev/components/form-error-summaryhttps://wrnexusjs.dev/components/form-fieldhttps://wrnexusjs.dev/components/form-gridhttps://wrnexusjs.dev/components/form-grouphttps://wrnexusjs.dev/components/form-help-texthttps://wrnexusjs.dev/components/form-labelhttps://wrnexusjs.dev/components/form-progresshttps://wrnexusjs.dev/components/form-rowhttps://wrnexusjs.dev/components/form-sectionhttps://wrnexusjs.dev/components/full-bleedhttps://wrnexusjs.dev/components/fullscreen-dialoghttps://wrnexusjs.dev/components/funnel-charthttps://wrnexusjs.dev/components/geo-charthttps://wrnexusjs.dev/components/geofence-editorhttps://wrnexusjs.dev/components/ghost-buttonhttps://wrnexusjs.dev/components/glass-cardhttps://wrnexusjs.dev/components/global-searchhttps://wrnexusjs.dev/components/gradient-ctahttps://wrnexusjs.dev/components/gradient-pickerhttps://wrnexusjs.dev/components/gradient-stop-editorhttps://wrnexusjs.dev/components/gridhttps://wrnexusjs.dev/components/guide-cardhttps://wrnexusjs.dev/components/guide-checklisthttps://wrnexusjs.dev/components/guide-difficulty-badgehttps://wrnexusjs.dev/components/guide-gridhttps://wrnexusjs.dev/components/guide-stephttps://wrnexusjs.dev/components/headerhttps://wrnexusjs.dev/components/header-actionshttps://wrnexusjs.dev/components/health-indicatorhttps://wrnexusjs.dev/components/herohttps://wrnexusjs.dev/components/hero-actionshttps://wrnexusjs.dev/components/hero-code-panelhttps://wrnexusjs.dev/components/hero-gradient-texthttps://wrnexusjs.dev/components/hero-primary-actionhttps://wrnexusjs.dev/components/hero-product-previewhttps://wrnexusjs.dev/components/hero-secondary-actionhttps://wrnexusjs.dev/components/hero-trust-texthttps://wrnexusjs.dev/components/hex-color-inputhttps://wrnexusjs.dev/components/hidden-fieldhttps://wrnexusjs.dev/components/highlight-texthttps://wrnexusjs.dev/components/holiday-calendarhttps://wrnexusjs.dev/components/hostname-inputhttps://wrnexusjs.dev/components/hour-pickerhttps://wrnexusjs.dev/components/hsl-color-inputhttps://wrnexusjs.dev/components/hstackhttps://wrnexusjs.dev/components/html-editorhttps://wrnexusjs.dev/components/human-approval-stephttps://wrnexusjs.dev/components/iconhttps://wrnexusjs.dev/components/icon-buttonhttps://wrnexusjs.dev/components/icon-pickerhttps://wrnexusjs.dev/components/icon-selectorhttps://wrnexusjs.dev/components/identifier-inputhttps://wrnexusjs.dev/components/illustrationhttps://wrnexusjs.dev/components/image-compression-previewhttps://wrnexusjs.dev/components/image-editorhttps://wrnexusjs.dev/components/image-preview-dialoghttps://wrnexusjs.dev/components/image-selectorhttps://wrnexusjs.dev/components/image-uploadhttps://wrnexusjs.dev/components/import-progresshttps://wrnexusjs.dev/components/incident-alerthttps://wrnexusjs.dev/components/incident-bannerhttps://wrnexusjs.dev/components/incident-cardhttps://wrnexusjs.dev/components/incident-listhttps://wrnexusjs.dev/components/incident-response-flowhttps://wrnexusjs.dev/components/incident-severity-badgehttps://wrnexusjs.dev/components/incident-timelinehttps://wrnexusjs.dev/components/industry-badgehttps://wrnexusjs.dev/components/industry-selectorhttps://wrnexusjs.dev/components/info-cardhttps://wrnexusjs.dev/components/inlinehttps://wrnexusjs.dev/components/inline-alerthttps://wrnexusjs.dev/components/inline-codehttps://wrnexusjs.dev/components/inputhttps://wrnexusjs.dev/components/input-grouphttps://wrnexusjs.dev/components/inset-panelhttps://wrnexusjs.dev/components/integer-inputhttps://wrnexusjs.dev/components/integration-cardhttps://wrnexusjs.dev/components/invoice-line-itemhttps://wrnexusjs.dev/components/invoice-summaryhttps://wrnexusjs.dev/components/ip-address-inputhttps://wrnexusjs.dev/components/job-cardhttps://wrnexusjs.dev/components/job-progresshttps://wrnexusjs.dev/components/job-title-inputhttps://wrnexusjs.dev/components/json-inputhttps://wrnexusjs.dev/components/json-viewerhttps://wrnexusjs.dev/components/key-value-tablehttps://wrnexusjs.dev/components/kyc-document-uploadhttps://wrnexusjs.dev/components/language-selectorhttps://wrnexusjs.dev/components/language-switcherhttps://wrnexusjs.dev/components/last-name-inputhttps://wrnexusjs.dev/components/latency-metrichttps://wrnexusjs.dev/components/latitude-inputhttps://wrnexusjs.dev/components/leadership-gridhttps://wrnexusjs.dev/components/lead-texthttps://wrnexusjs.dev/components/legal-acceptance-noticehttps://wrnexusjs.dev/components/legal-bullet-listhttps://wrnexusjs.dev/components/legal-contact-blockhttps://wrnexusjs.dev/components/legal-definition-listhttps://wrnexusjs.dev/components/legal-document-headerhttps://wrnexusjs.dev/components/legal-document-layouthttps://wrnexusjs.dev/components/legal-herohttps://wrnexusjs.dev/components/legal-language-selectorhttps://wrnexusjs.dev/components/legal-noticehttps://wrnexusjs.dev/components/legal-page-shellhttps://wrnexusjs.dev/components/legal-print-buttonhttps://wrnexusjs.dev/components/legal-region-selectorhttps://wrnexusjs.dev/components/legal-sectionhttps://wrnexusjs.dev/components/legal-summaryhttps://wrnexusjs.dev/components/legal-tablehttps://wrnexusjs.dev/components/legal-table-of-contentshttps://wrnexusjs.dev/components/legal-version-badgehttps://wrnexusjs.dev/components/letter-spacing-pickerhttps://wrnexusjs.dev/components/license-key-inputhttps://wrnexusjs.dev/components/lightboxhttps://wrnexusjs.dev/components/line-charthttps://wrnexusjs.dev/components/line-height-pickerhttps://wrnexusjs.dev/components/linkhttps://wrnexusjs.dev/components/link-buttonhttps://wrnexusjs.dev/components/listhttps://wrnexusjs.dev/components/loading-buttonhttps://wrnexusjs.dev/components/locale-selectorhttps://wrnexusjs.dev/components/localized-route-linkhttps://wrnexusjs.dev/components/location-pickerhttps://wrnexusjs.dev/components/logohttps://wrnexusjs.dev/components/logo-cloudhttps://wrnexusjs.dev/components/logo-uploadhttps://wrnexusjs.dev/components/logout-dialoghttps://wrnexusjs.dev/components/log-tablehttps://wrnexusjs.dev/components/longitude-inputhttps://wrnexusjs.dev/components/maintenance-alerthttps://wrnexusjs.dev/components/maintenance-bannerhttps://wrnexusjs.dev/components/maintenance-cardhttps://wrnexusjs.dev/components/maintenance-pagehttps://wrnexusjs.dev/components/maintenance-statehttps://wrnexusjs.dev/components/maintenance-window-pickerhttps://wrnexusjs.dev/components/map-pickerhttps://wrnexusjs.dev/components/markdown-editorhttps://wrnexusjs.dev/components/marketing-page-shellhttps://wrnexusjs.dev/components/marketing-section-headerhttps://wrnexusjs.dev/components/masked-secret-fieldhttps://wrnexusjs.dev/components/mega-menuhttps://wrnexusjs.dev/components/member-listhttps://wrnexusjs.dev/components/mention-inputhttps://wrnexusjs.dev/components/message-character-counterhttps://wrnexusjs.dev/components/message-composerhttps://wrnexusjs.dev/components/message-composer-previewhttps://wrnexusjs.dev/components/message-limit-inputhttps://wrnexusjs.dev/components/message-previewhttps://wrnexusjs.dev/components/message-volume-sliderhttps://wrnexusjs.dev/components/metrichttps://wrnexusjs.dev/components/metric-cardhttps://wrnexusjs.dev/components/metric-gridhttps://wrnexusjs.dev/components/metric-texthttps://wrnexusjs.dev/components/minute-pickerhttps://wrnexusjs.dev/components/mission-sectionhttps://wrnexusjs.dev/components/mobile-device-framehttps://wrnexusjs.dev/components/mobile-inputhttps://wrnexusjs.dev/components/mobile-menu-buttonhttps://wrnexusjs.dev/components/mobile-navigationhttps://wrnexusjs.dev/components/mobile-table-cardhttps://wrnexusjs.dev/components/modalhttps://wrnexusjs.dev/components/monthly-volume-selectorhttps://wrnexusjs.dev/components/month-pickerhttps://wrnexusjs.dev/components/month-year-pickerhttps://wrnexusjs.dev/components/multi-file-uploadhttps://wrnexusjs.dev/components/multiple-email-inputhttps://wrnexusjs.dev/components/multi-selecthttps://wrnexusjs.dev/components/muted-texthttps://wrnexusjs.dev/components/name-inputhttps://wrnexusjs.dev/components/narrow-containerhttps://wrnexusjs.dev/components/navigationhttps://wrnexusjs.dev/components/navigation-itemhttps://wrnexusjs.dev/components/navigation-mega-menuhttps://wrnexusjs.dev/components/new-badgehttps://wrnexusjs.dev/components/new-password-inputhttps://wrnexusjs.dev/components/newsletter-ctahttps://wrnexusjs.dev/components/newsletter-formhttps://wrnexusjs.dev/components/no-results-statehttps://wrnexusjs.dev/components/not-found-pagehttps://wrnexusjs.dev/components/not-found-statehttps://wrnexusjs.dev/components/notification-cardhttps://wrnexusjs.dev/components/notification-dothttps://wrnexusjs.dev/components/notification-listhttps://wrnexusjs.dev/components/number-inputhttps://wrnexusjs.dev/components/office-cardhttps://wrnexusjs.dev/components/offline-pagehttps://wrnexusjs.dev/components/offline-statehttps://wrnexusjs.dev/components/onboarding-progresshttps://wrnexusjs.dev/components/one-time-secret-displayhttps://wrnexusjs.dev/components/online-indicatorhttps://wrnexusjs.dev/components/opacity-sliderhttps://wrnexusjs.dev/components/open-apictahttps://wrnexusjs.dev/components/optional-indicatorhttps://wrnexusjs.dev/components/organization-selectorhttps://wrnexusjs.dev/components/otp-inputhttps://wrnexusjs.dev/components/otp-verification-formhttps://wrnexusjs.dev/components/outlined-cardhttps://wrnexusjs.dev/components/page-alerthttps://wrnexusjs.dev/components/page-headerhttps://wrnexusjs.dev/components/page-headinghttps://wrnexusjs.dev/components/page-shellhttps://wrnexusjs.dev/components/page-skeletonhttps://wrnexusjs.dev/components/paginationhttps://wrnexusjs.dev/components/panelhttps://wrnexusjs.dev/components/partner-application-formhttps://wrnexusjs.dev/components/partner-logo-gridhttps://wrnexusjs.dev/components/partner-program-cardhttps://wrnexusjs.dev/components/passkey-buttonhttps://wrnexusjs.dev/components/password-inputhttps://wrnexusjs.dev/components/password-requirement-listhttps://wrnexusjs.dev/components/password-strength-meterhttps://wrnexusjs.dev/components/password-visibility-togglehttps://wrnexusjs.dev/components/path-inputhttps://wrnexusjs.dev/components/payment-method-cardhttps://wrnexusjs.dev/components/pdf-previewhttps://wrnexusjs.dev/components/percentage-inputhttps://wrnexusjs.dev/components/permission-selectorhttps://wrnexusjs.dev/components/phone-inputhttps://wrnexusjs.dev/components/pie-charthttps://wrnexusjs.dev/components/pillhttps://wrnexusjs.dev/components/pin-inputhttps://wrnexusjs.dev/components/plain-text-editorhttps://wrnexusjs.dev/components/plan-ctahttps://wrnexusjs.dev/components/plan-feature-listhttps://wrnexusjs.dev/components/plan-limit-listhttps://wrnexusjs.dev/components/plan-selectorhttps://wrnexusjs.dev/components/platform-pillar-cardhttps://wrnexusjs.dev/components/policy-version-tablehttps://wrnexusjs.dev/components/popoverhttps://wrnexusjs.dev/components/port-inputhttps://wrnexusjs.dev/components/port-number-inputhttps://wrnexusjs.dev/components/positive-number-inputhttps://wrnexusjs.dev/components/postal-code-inputhttps://wrnexusjs.dev/components/postman-ctahttps://wrnexusjs.dev/components/preset-date-range-pickerhttps://wrnexusjs.dev/components/press-release-cardhttps://wrnexusjs.dev/components/preview-badgehttps://wrnexusjs.dev/components/previous-next-navigationhttps://wrnexusjs.dev/components/price-inputhttps://wrnexusjs.dev/components/price-range-sliderhttps://wrnexusjs.dev/components/price-texthttps://wrnexusjs.dev/components/pricing-cardhttps://wrnexusjs.dev/components/pricing-comparison-tablehttps://wrnexusjs.dev/components/pricing-contact-formhttps://wrnexusjs.dev/components/pricing-feature-grouphttps://wrnexusjs.dev/components/pricing-gridhttps://wrnexusjs.dev/components/pricing-herohttps://wrnexusjs.dev/components/pricing-plan-cardhttps://wrnexusjs.dev/components/pricing-tablehttps://wrnexusjs.dev/components/pricing-togglehttps://wrnexusjs.dev/components/primary-buttonhttps://wrnexusjs.dev/components/print-actionhttps://wrnexusjs.dev/components/print-policy-buttonhttps://wrnexusjs.dev/components/priority-selectorhttps://wrnexusjs.dev/components/privacy-noticehttps://wrnexusjs.dev/components/product-architecture-diagramhttps://wrnexusjs.dev/components/product-cardhttps://wrnexusjs.dev/components/product-category-sectionhttps://wrnexusjs.dev/components/product-ctahttps://wrnexusjs.dev/components/product-feature-listhttps://wrnexusjs.dev/components/product-gridhttps://wrnexusjs.dev/components/product-herohttps://wrnexusjs.dev/components/product-iconhttps://wrnexusjs.dev/components/product-integration-listhttps://wrnexusjs.dev/components/product-listhttps://wrnexusjs.dev/components/product-logohttps://wrnexusjs.dev/components/product-mega-menuhttps://wrnexusjs.dev/components/product-mini-cardhttps://wrnexusjs.dev/components/product-navigation-cardhttps://wrnexusjs.dev/components/product-page-shellhttps://wrnexusjs.dev/components/product-selectorhttps://wrnexusjs.dev/components/products-mega-menuhttps://wrnexusjs.dev/components/product-status-badgehttps://wrnexusjs.dev/components/product-use-case-listhttps://wrnexusjs.dev/components/progresshttps://wrnexusjs.dev/components/progress-barhttps://wrnexusjs.dev/components/progress-charthttps://wrnexusjs.dev/components/progress-ringhttps://wrnexusjs.dev/components/progress-sliderhttps://wrnexusjs.dev/components/project-cardhttps://wrnexusjs.dev/components/project-selectorhttps://wrnexusjs.dev/components/project-switcherhttps://wrnexusjs.dev/components/promo-code-inputhttps://wrnexusjs.dev/components/prompt-dialoghttps://wrnexusjs.dev/components/provider-selectorhttps://wrnexusjs.dev/components/public-footerhttps://wrnexusjs.dev/components/public-headerhttps://wrnexusjs.dev/components/public-header-logohttps://wrnexusjs.dev/components/public-mobile-navigationhttps://wrnexusjs.dev/components/public-page-shellhttps://wrnexusjs.dev/components/public-searchhttps://wrnexusjs.dev/components/publish-date-time-pickerhttps://wrnexusjs.dev/components/push-composerhttps://wrnexusjs.dev/components/push-notification-editorhttps://wrnexusjs.dev/components/qr-codehttps://wrnexusjs.dev/components/quantity-inputhttps://wrnexusjs.dev/components/quantity-stepperhttps://wrnexusjs.dev/components/quiet-hours-pickerhttps://wrnexusjs.dev/components/quote-texthttps://wrnexusjs.dev/components/radiohttps://wrnexusjs.dev/components/radio-grouphttps://wrnexusjs.dev/components/range-inputhttps://wrnexusjs.dev/components/range-sliderhttps://wrnexusjs.dev/components/rate-limited-statehttps://wrnexusjs.dev/components/rate-limit-inputhttps://wrnexusjs.dev/components/rate-limit-pagehttps://wrnexusjs.dev/components/rate-tablehttps://wrnexusjs.dev/components/rating-sliderhttps://wrnexusjs.dev/components/recipient-selectorhttps://wrnexusjs.dev/components/recovery-code-formhttps://wrnexusjs.dev/components/recovery-code-inputhttps://wrnexusjs.dev/components/recurrence-rule-builderhttps://wrnexusjs.dev/components/recurring-schedule-pickerhttps://wrnexusjs.dev/components/redirect-uri-inputhttps://wrnexusjs.dev/components/reference-inputhttps://wrnexusjs.dev/components/regex-inputhttps://wrnexusjs.dev/components/regional-privacy-bannerhttps://wrnexusjs.dev/components/region-availability-tablehttps://wrnexusjs.dev/components/region-selectorhttps://wrnexusjs.dev/components/region-unavailable-alerthttps://wrnexusjs.dev/components/region-unavailable-statehttps://wrnexusjs.dev/components/reject-optional-cookies-buttonhttps://wrnexusjs.dev/components/reopen-cookie-settings-buttonhttps://wrnexusjs.dev/components/report-cardhttps://wrnexusjs.dev/components/request-response-viewerhttps://wrnexusjs.dev/components/request-viewerhttps://wrnexusjs.dev/components/required-indicatorhttps://wrnexusjs.dev/components/reset-password-formhttps://wrnexusjs.dev/components/resizable-panelhttps://wrnexusjs.dev/components/resource-cardhttps://wrnexusjs.dev/components/resource-download-cardhttps://wrnexusjs.dev/components/resource-page-shellhttps://wrnexusjs.dev/components/resource-searchhttps://wrnexusjs.dev/components/resources-mega-menuhttps://wrnexusjs.dev/components/resource-type-badgehttps://wrnexusjs.dev/components/response-viewerhttps://wrnexusjs.dev/components/responsible-disclosure-ctahttps://wrnexusjs.dev/components/responsive-tablehttps://wrnexusjs.dev/components/results-sectionhttps://wrnexusjs.dev/components/retention-tablehttps://wrnexusjs.dev/components/retry-count-inputhttps://wrnexusjs.dev/components/revenue-charthttps://wrnexusjs.dev/components/rgb-color-inputhttps://wrnexusjs.dev/components/rich-text-editorhttps://wrnexusjs.dev/components/rich-text-inputhttps://wrnexusjs.dev/components/role-selectorhttps://wrnexusjs.dev/components/rolling-date-range-pickerhttps://wrnexusjs.dev/components/save-cookie-preferences-buttonhttps://wrnexusjs.dev/components/saved-filter-selectorhttps://wrnexusjs.dev/components/scheduled-date-time-pickerhttps://wrnexusjs.dev/components/schedule-message-pickerhttps://wrnexusjs.dev/components/schedule-pickerhttps://wrnexusjs.dev/components/screenshot-framehttps://wrnexusjs.dev/components/scroll-areahttps://wrnexusjs.dev/components/sdkcardhttps://wrnexusjs.dev/components/sdk-language-selectorhttps://wrnexusjs.dev/components/sdklanguage-tabshttps://wrnexusjs.dev/components/sdktabshttps://wrnexusjs.dev/components/search-buttonhttps://wrnexusjs.dev/components/search-category-tabshttps://wrnexusjs.dev/components/search-dialoghttps://wrnexusjs.dev/components/search-empty-statehttps://wrnexusjs.dev/components/search-inputhttps://wrnexusjs.dev/components/search-loading-statehttps://wrnexusjs.dev/components/search-result-itemhttps://wrnexusjs.dev/components/secondary-buttonhttps://wrnexusjs.dev/components/second-pickerhttps://wrnexusjs.dev/components/secret-displayhttps://wrnexusjs.dev/components/secret-inputhttps://wrnexusjs.dev/components/secret-reveal-dialoghttps://wrnexusjs.dev/components/sectionhttps://wrnexusjs.dev/components/section-actionshttps://wrnexusjs.dev/components/section-headerhttps://wrnexusjs.dev/components/section-headinghttps://wrnexusjs.dev/components/security-alerthttps://wrnexusjs.dev/components/security-contact-cardhttps://wrnexusjs.dev/components/security-feature-cardhttps://wrnexusjs.dev/components/security-herohttps://wrnexusjs.dev/components/security-pillar-gridhttps://wrnexusjs.dev/components/security-practice-listhttps://wrnexusjs.dev/components/security-report-formhttps://wrnexusjs.dev/components/selecthttps://wrnexusjs.dev/components/sender-id-inputhttps://wrnexusjs.dev/components/server-error-pagehttps://wrnexusjs.dev/components/service-level-tablehttps://wrnexusjs.dev/components/service-status-badgehttps://wrnexusjs.dev/components/service-status-listhttps://wrnexusjs.dev/components/service-status-rowhttps://wrnexusjs.dev/components/session-cardhttps://wrnexusjs.dev/components/session-expired-dialoghttps://wrnexusjs.dev/components/setup-checklisthttps://wrnexusjs.dev/components/severity-selectorhttps://wrnexusjs.dev/components/shadow-pickerhttps://wrnexusjs.dev/components/share-actionhttps://wrnexusjs.dev/components/share-buttonhttps://wrnexusjs.dev/components/sidebar-layouthttps://wrnexusjs.dev/components/side-panelhttps://wrnexusjs.dev/components/sign-in-formhttps://wrnexusjs.dev/components/sign-in-linkhttps://wrnexusjs.dev/components/sign-up-formhttps://wrnexusjs.dev/components/site-searchhttps://wrnexusjs.dev/components/skeletonhttps://wrnexusjs.dev/components/skip-linkhttps://wrnexusjs.dev/components/sla-tablehttps://wrnexusjs.dev/components/sliderhttps://wrnexusjs.dev/components/slug-inputhttps://wrnexusjs.dev/components/small-texthttps://wrnexusjs.dev/components/smart-route-diagramhttps://wrnexusjs.dev/components/sms-composerhttps://wrnexusjs.dev/components/sms-message-editorhttps://wrnexusjs.dev/components/sms-segment-counterhttps://wrnexusjs.dev/components/social-sharehttps://wrnexusjs.dev/components/solution-herohttps://wrnexusjs.dev/components/solution-page-shellhttps://wrnexusjs.dev/components/solution-sectionhttps://wrnexusjs.dev/components/solutions-mega-menuhttps://wrnexusjs.dev/components/sortable-tablehttps://wrnexusjs.dev/components/spacerhttps://wrnexusjs.dev/components/spinnerhttps://wrnexusjs.dev/components/split-buttonhttps://wrnexusjs.dev/components/split-ctahttps://wrnexusjs.dev/components/split-herohttps://wrnexusjs.dev/components/split-layouthttps://wrnexusjs.dev/components/split-section-headerhttps://wrnexusjs.dev/components/stackhttps://wrnexusjs.dev/components/start-free-buttonhttps://wrnexusjs.dev/components/stat-cardhttps://wrnexusjs.dev/components/state-selectorhttps://wrnexusjs.dev/components/status-badgehttps://wrnexusjs.dev/components/status-bannerhttps://wrnexusjs.dev/components/status-page-shellhttps://wrnexusjs.dev/components/status-selectorhttps://wrnexusjs.dev/components/status-subscribe-formhttps://wrnexusjs.dev/components/status-tablehttps://wrnexusjs.dev/components/step-navigationhttps://wrnexusjs.dev/components/stepperhttps://wrnexusjs.dev/components/stepper-inputhttps://wrnexusjs.dev/components/step-up-authentication-dialoghttps://wrnexusjs.dev/components/sticker-pickerhttps://wrnexusjs.dev/components/stickyhttps://wrnexusjs.dev/components/sticky-layouthttps://wrnexusjs.dev/components/street-address-inputhttps://wrnexusjs.dev/components/subdomain-inputhttps://wrnexusjs.dev/components/subject-inputhttps://wrnexusjs.dev/components/subprocessor-tablehttps://wrnexusjs.dev/components/subsection-headinghttps://wrnexusjs.dev/components/success-cardhttps://wrnexusjs.dev/components/success-statehttps://wrnexusjs.dev/components/support-request-formhttps://wrnexusjs.dev/components/surfacehttps://wrnexusjs.dev/components/switchhttps://wrnexusjs.dev/components/tablehttps://wrnexusjs.dev/components/table-headerhttps://wrnexusjs.dev/components/table-rowhttps://wrnexusjs.dev/components/table-skeletonhttps://wrnexusjs.dev/components/tabshttps://wrnexusjs.dev/components/taghttps://wrnexusjs.dev/components/tag-inputhttps://wrnexusjs.dev/components/tax-noticehttps://wrnexusjs.dev/components/tax-rate-inputhttps://wrnexusjs.dev/components/team-member-cardhttps://wrnexusjs.dev/components/team-size-selectorhttps://wrnexusjs.dev/components/template-cardhttps://wrnexusjs.dev/components/template-selectorhttps://wrnexusjs.dev/components/template-variable-inputhttps://wrnexusjs.dev/components/tenant-isolation-diagramhttps://wrnexusjs.dev/components/terminal-blockhttps://wrnexusjs.dev/components/tertiary-buttonhttps://wrnexusjs.dev/components/testimonial-cardhttps://wrnexusjs.dev/components/testimonial-carouselhttps://wrnexusjs.dev/components/test-message-dialoghttps://wrnexusjs.dev/components/textareahttps://wrnexusjs.dev/components/text-inputhttps://wrnexusjs.dev/components/text-linkhttps://wrnexusjs.dev/components/text-skeletonhttps://wrnexusjs.dev/components/theme-togglehttps://wrnexusjs.dev/components/theme-color-pickerhttps://wrnexusjs.dev/components/theme-switcherhttps://wrnexusjs.dev/components/time-inputhttps://wrnexusjs.dev/components/timelinehttps://wrnexusjs.dev/components/timeline-charthttps://wrnexusjs.dev/components/timeline-itemhttps://wrnexusjs.dev/components/timeout-inputhttps://wrnexusjs.dev/components/time-pickerhttps://wrnexusjs.dev/components/time-range-pickerhttps://wrnexusjs.dev/components/timezone-aware-time-pickerhttps://wrnexusjs.dev/components/timezone-selectorhttps://wrnexusjs.dev/components/toasthttps://wrnexusjs.dev/components/toast-actionhttps://wrnexusjs.dev/components/toast-hosthttps://wrnexusjs.dev/components/toast-iconhttps://wrnexusjs.dev/components/toast-progresshttps://wrnexusjs.dev/components/togglehttps://wrnexusjs.dev/components/toggle-grouphttps://wrnexusjs.dev/components/token-inputhttps://wrnexusjs.dev/components/tooltiphttps://wrnexusjs.dev/components/totp-verification-formhttps://wrnexusjs.dev/components/translated-texthttps://wrnexusjs.dev/components/tree-tablehttps://wrnexusjs.dev/components/trend-indicatorhttps://wrnexusjs.dev/components/truncated-texthttps://wrnexusjs.dev/components/trust-badge-listhttps://wrnexusjs.dev/components/typographyhttps://wrnexusjs.dev/components/unavailable-region-statehttps://wrnexusjs.dev/components/unified-timeline-previewhttps://wrnexusjs.dev/components/unsaved-changes-dialoghttps://wrnexusjs.dev/components/upload-itemhttps://wrnexusjs.dev/components/upload-previewhttps://wrnexusjs.dev/components/upload-progresshttps://wrnexusjs.dev/components/uptime-charthttps://wrnexusjs.dev/components/uptime-metrichttps://wrnexusjs.dev/components/url-inputhttps://wrnexusjs.dev/components/usage-pricing-tablehttps://wrnexusjs.dev/components/use-case-selectorhttps://wrnexusjs.dev/components/user-cardhttps://wrnexusjs.dev/components/username-inputhttps://wrnexusjs.dev/components/value-cardhttps://wrnexusjs.dev/components/values-gridhttps://wrnexusjs.dev/components/verification-code-inputhttps://wrnexusjs.dev/components/verified-badgehttps://wrnexusjs.dev/components/version-selectorhttps://wrnexusjs.dev/components/vertical-tabshttps://wrnexusjs.dev/components/video-cardhttps://wrnexusjs.dev/components/video-preview-dialoghttps://wrnexusjs.dev/components/video-uploadhttps://wrnexusjs.dev/components/virtualized-tablehttps://wrnexusjs.dev/components/vision-sectionhttps://wrnexusjs.dev/components/visually-hiddenhttps://wrnexusjs.dev/components/voice-script-composerhttps://wrnexusjs.dev/components/voice-script-editorhttps://wrnexusjs.dev/components/volume-inputhttps://wrnexusjs.dev/components/volume-sliderhttps://wrnexusjs.dev/components/warning-cardhttps://wrnexusjs.dev/components/webhook-event-cardhttps://wrnexusjs.dev/components/webhook-flow-diagramhttps://wrnexusjs.dev/components/webhook-payload-viewerhttps://wrnexusjs.dev/components/webhook-url-inputhttps://wrnexusjs.dev/components/webinar-cardhttps://wrnexusjs.dev/components/webinar-registration-formhttps://wrnexusjs.dev/components/wellhttps://wrnexusjs.dev/components/whats-app-composerhttps://wrnexusjs.dev/components/whats-app-number-inputhttps://wrnexusjs.dev/components/whats-app-template-editorhttps://wrnexusjs.dev/components/wide-containerhttps://wrnexusjs.dev/components/wizardhttps://wrnexusjs.dev/components/wizard-headerhttps://wrnexusjs.dev/components/wizard-navigationhttps://wrnexusjs.dev/components/workflow-canvas-previewhttps://wrnexusjs.dev/components/workflow-progresshttps://wrnexusjs.dev/components/workspace-cardhttps://wrnexusjs.dev/components/workspace-selectorhttps://wrnexusjs.dev/components/workspace-switcherhttps://wrnexusjs.dev/components/year-pickerhttps://wrnexusjs.dev/components/zoom-slider +https://wrnexusjs.dev/https://wrnexusjs.dev/accesshttps://wrnexusjs.dev/getting-startedhttps://wrnexusjs.dev/tutorialhttps://wrnexusjs.dev/architecturehttps://wrnexusjs.dev/languagehttps://wrnexusjs.dev/packageshttps://wrnexusjs.dev/componentshttps://wrnexusjs.dev/guides/project-structurehttps://wrnexusjs.dev/guides/routinghttps://wrnexusjs.dev/guides/pages-and-componentshttps://wrnexusjs.dev/guides/server-datahttps://wrnexusjs.dev/guides/api-routeshttps://wrnexusjs.dev/guides/middlewarehttps://wrnexusjs.dev/guides/forms-and-validationhttps://wrnexusjs.dev/guides/authenticationhttps://wrnexusjs.dev/guides/authorizationhttps://wrnexusjs.dev/guides/securityhttps://wrnexusjs.dev/guides/databasehttps://wrnexusjs.dev/guides/uploadshttps://wrnexusjs.dev/guides/realtimehttps://wrnexusjs.dev/guides/pubsubhttps://wrnexusjs.dev/guides/queueshttps://wrnexusjs.dev/guides/testinghttps://wrnexusjs.dev/guides/workspaces-and-gatewayhttps://wrnexusjs.dev/guides/deploymenthttps://wrnexusjs.dev/guides/configuration-and-profileshttps://wrnexusjs.dev/guides/i18n-and-themeshttps://wrnexusjs.dev/guides/mobilehttps://wrnexusjs.dev/guides/observabilityhttps://wrnexusjs.dev/guides/upgradinghttps://wrnexusjs.dev/guides/troubleshootinghttps://wrnexusjs.dev/exampleshttps://wrnexusjs.dev/showcasehttps://wrnexusjs.dev/benchmarkshttps://wrnexusjs.dev/roadmaphttps://wrnexusjs.dev/changeloghttps://wrnexusjs.dev/releases/0.2.69https://wrnexusjs.dev/securityhttps://wrnexusjs.dev/supporthttps://wrnexusjs.dev/licensehttps://wrnexusjs.dev/searchhttps://wrnexusjs.dev/404https://wrnexusjs.dev/packages/aihttps://wrnexusjs.dev/packages/authzhttps://wrnexusjs.dev/packages/clihttps://wrnexusjs.dev/packages/compilerhttps://wrnexusjs.dev/packages/corehttps://wrnexusjs.dev/packages/csrhttps://wrnexusjs.dev/packages/dbhttps://wrnexusjs.dev/packages/dev-serverhttps://wrnexusjs.dev/packages/encryptionhttps://wrnexusjs.dev/packages/helpershttps://wrnexusjs.dev/packages/i18nhttps://wrnexusjs.dev/packages/jwthttps://wrnexusjs.dev/packages/mobilehttps://wrnexusjs.dev/packages/nativehttps://wrnexusjs.dev/packages/oauthhttps://wrnexusjs.dev/packages/pubsubhttps://wrnexusjs.dev/packages/queuehttps://wrnexusjs.dev/packages/reactivehttps://wrnexusjs.dev/packages/routerhttps://wrnexusjs.dev/packages/ssrhttps://wrnexusjs.dev/packages/styleshttps://wrnexusjs.dev/packages/testhttps://wrnexusjs.dev/packages/trackinghttps://wrnexusjs.dev/packages/uihttps://wrnexusjs.dev/packages/uploaderhttps://wrnexusjs.dev/packages/validationhttps://wrnexusjs.dev/components/accept-all-cookies-buttonhttps://wrnexusjs.dev/components/accessible-accordionhttps://wrnexusjs.dev/components/accessible-carouselhttps://wrnexusjs.dev/components/accessible-chart-summaryhttps://wrnexusjs.dev/components/accessible-dialoghttps://wrnexusjs.dev/components/accessible-error-summaryhttps://wrnexusjs.dev/components/accessible-iconhttps://wrnexusjs.dev/components/accessible-menuhttps://wrnexusjs.dev/components/accessible-tabshttps://wrnexusjs.dev/components/accessible-tooltiphttps://wrnexusjs.dev/components/accordionhttps://wrnexusjs.dev/components/account-menuhttps://wrnexusjs.dev/components/account-status-bannerhttps://wrnexusjs.dev/components/action-menuhttps://wrnexusjs.dev/components/active-filter-listhttps://wrnexusjs.dev/components/activity-listhttps://wrnexusjs.dev/components/add-on-cardhttps://wrnexusjs.dev/components/address-inputhttps://wrnexusjs.dev/components/address-previewhttps://wrnexusjs.dev/components/advanced-filter-builderhttps://wrnexusjs.dev/components/alerthttps://wrnexusjs.dev/components/alert-dialoghttps://wrnexusjs.dev/components/amount-inputhttps://wrnexusjs.dev/components/analytics-dashboard-previewhttps://wrnexusjs.dev/components/anchor-navigationhttps://wrnexusjs.dev/components/announcement-barhttps://wrnexusjs.dev/components/apartment-inputhttps://wrnexusjs.dev/components/api-authentication-noticehttps://wrnexusjs.dev/components/api-endpoint-cardhttps://wrnexusjs.dev/components/api-error-examplehttps://wrnexusjs.dev/components/api-header-tablehttps://wrnexusjs.dev/components/api-key-create-dialoghttps://wrnexusjs.dev/components/api-key-displayhttps://wrnexusjs.dev/components/api-key-inputhttps://wrnexusjs.dev/components/api-method-badgehttps://wrnexusjs.dev/components/api-parameter-tablehttps://wrnexusjs.dev/components/api-rate-limit-noticehttps://wrnexusjs.dev/components/api-request-examplehttps://wrnexusjs.dev/components/api-response-examplehttps://wrnexusjs.dev/components/api-schema-tablehttps://wrnexusjs.dev/components/api-schema-viewerhttps://wrnexusjs.dev/components/api-version-badgehttps://wrnexusjs.dev/components/app-headerhttps://wrnexusjs.dev/components/architecture-sectionhttps://wrnexusjs.dev/components/area-charthttps://wrnexusjs.dev/components/article-herohttps://wrnexusjs.dev/components/article-layouthttps://wrnexusjs.dev/components/article-newsletter-ctahttps://wrnexusjs.dev/components/article-page-shellhttps://wrnexusjs.dev/components/article-share-actionshttps://wrnexusjs.dev/components/aspect-ratiohttps://wrnexusjs.dev/components/asset-cardhttps://wrnexusjs.dev/components/attachment-pickerhttps://wrnexusjs.dev/components/attachment-uploadhttps://wrnexusjs.dev/components/audio-uploadhttps://wrnexusjs.dev/components/audit-log-previewhttps://wrnexusjs.dev/components/audit-tablehttps://wrnexusjs.dev/components/authenticator-code-inputhttps://wrnexusjs.dev/components/author-avatarhttps://wrnexusjs.dev/components/author-cardhttps://wrnexusjs.dev/components/authorized-application-cardhttps://wrnexusjs.dev/components/auto-gridhttps://wrnexusjs.dev/components/automation-example-cardhttps://wrnexusjs.dev/components/availability-calendarhttps://wrnexusjs.dev/components/avatarhttps://wrnexusjs.dev/components/avatar-grouphttps://wrnexusjs.dev/components/avatar-uploadhttps://wrnexusjs.dev/components/back-buttonhttps://wrnexusjs.dev/components/back-to-tophttps://wrnexusjs.dev/components/badgehttps://wrnexusjs.dev/components/bank-transfer-detailshttps://wrnexusjs.dev/components/bannerhttps://wrnexusjs.dev/components/bar-charthttps://wrnexusjs.dev/components/beta-badgehttps://wrnexusjs.dev/components/billing-address-formhttps://wrnexusjs.dev/components/billing-examplehttps://wrnexusjs.dev/components/billing-period-togglehttps://wrnexusjs.dev/components/blackout-date-pickerhttps://wrnexusjs.dev/components/blog-cardhttps://wrnexusjs.dev/components/blog-gridhttps://wrnexusjs.dev/components/blog-listhttps://wrnexusjs.dev/components/blog-searchhttps://wrnexusjs.dev/components/body-texthttps://wrnexusjs.dev/components/border-radius-pickerhttps://wrnexusjs.dev/components/bottom-navigationhttps://wrnexusjs.dev/components/brand-color-pickerhttps://wrnexusjs.dev/components/brand-selectorhttps://wrnexusjs.dev/components/breadcrumbshttps://wrnexusjs.dev/components/browser-framehttps://wrnexusjs.dev/components/budget-range-sliderhttps://wrnexusjs.dev/components/budget-selectorhttps://wrnexusjs.dev/components/business-hours-pickerhttps://wrnexusjs.dev/components/buttonhttps://wrnexusjs.dev/components/button-grouphttps://wrnexusjs.dev/components/button-selectorhttps://wrnexusjs.dev/components/calendarhttps://wrnexusjs.dev/components/calendar-gridhttps://wrnexusjs.dev/components/calendar-headerhttps://wrnexusjs.dev/components/calendar-navigationhttps://wrnexusjs.dev/components/callback-url-inputhttps://wrnexusjs.dev/components/campaign-cardhttps://wrnexusjs.dev/components/campaign-performance-previewhttps://wrnexusjs.dev/components/campaign-progresshttps://wrnexusjs.dev/components/capability-gridhttps://wrnexusjs.dev/components/captcha-fieldhttps://wrnexusjs.dev/components/cardhttps://wrnexusjs.dev/components/card-payment-formhttps://wrnexusjs.dev/components/card-selectorhttps://wrnexusjs.dev/components/card-skeletonhttps://wrnexusjs.dev/components/career-application-formhttps://wrnexusjs.dev/components/career-benefits-gridhttps://wrnexusjs.dev/components/carouselhttps://wrnexusjs.dev/components/case-study-cardhttps://wrnexusjs.dev/components/case-study-herohttps://wrnexusjs.dev/components/case-study-previewhttps://wrnexusjs.dev/components/centered-ctahttps://wrnexusjs.dev/components/centered-herohttps://wrnexusjs.dev/components/centered-section-headerhttps://wrnexusjs.dev/components/certificate-uploadhttps://wrnexusjs.dev/components/certification-badgehttps://wrnexusjs.dev/components/challenge-sectionhttps://wrnexusjs.dev/components/channel-badgehttps://wrnexusjs.dev/components/channel-cardhttps://wrnexusjs.dev/components/channel-comparison-charthttps://wrnexusjs.dev/components/channel-comparison-tablehttps://wrnexusjs.dev/components/channel-fallback-diagramhttps://wrnexusjs.dev/components/channel-flowhttps://wrnexusjs.dev/components/channel-iconhttps://wrnexusjs.dev/components/channel-rate-tablehttps://wrnexusjs.dev/components/channel-selectorhttps://wrnexusjs.dev/components/character-counterhttps://wrnexusjs.dev/components/chart-empty-statehttps://wrnexusjs.dev/components/chart-tooltiphttps://wrnexusjs.dev/components/checkboxhttps://wrnexusjs.dev/components/checkbox-grouphttps://wrnexusjs.dev/components/checklisthttps://wrnexusjs.dev/components/checklist-progresshttps://wrnexusjs.dev/components/chiphttps://wrnexusjs.dev/components/chip-inputhttps://wrnexusjs.dev/components/circular-progresshttps://wrnexusjs.dev/components/city-selectorhttps://wrnexusjs.dev/components/clear-filters-buttonhttps://wrnexusjs.dev/components/clickable-cardhttps://wrnexusjs.dev/components/close-buttonhttps://wrnexusjs.dev/components/clusterhttps://wrnexusjs.dev/components/codehttps://wrnexusjs.dev/components/code-blockhttps://wrnexusjs.dev/components/code-copy-buttonhttps://wrnexusjs.dev/components/code-headerhttps://wrnexusjs.dev/components/code-inputhttps://wrnexusjs.dev/components/code-language-badgehttps://wrnexusjs.dev/components/code-tabshttps://wrnexusjs.dev/components/code-texthttps://wrnexusjs.dev/components/cohort-charthttps://wrnexusjs.dev/components/color-gridhttps://wrnexusjs.dev/components/color-hex-inputhttps://wrnexusjs.dev/components/color-pickerhttps://wrnexusjs.dev/components/color-selectorhttps://wrnexusjs.dev/components/color-swatchhttps://wrnexusjs.dev/components/comboboxhttps://wrnexusjs.dev/components/coming-soon-badgehttps://wrnexusjs.dev/components/coming-soon-statehttps://wrnexusjs.dev/components/command-blockhttps://wrnexusjs.dev/components/command-menuhttps://wrnexusjs.dev/components/command-search-inputhttps://wrnexusjs.dev/components/company-herohttps://wrnexusjs.dev/components/company-name-inputhttps://wrnexusjs.dev/components/company-page-shellhttps://wrnexusjs.dev/components/company-size-selectorhttps://wrnexusjs.dev/components/comparison-date-range-pickerhttps://wrnexusjs.dev/components/comparison-tablehttps://wrnexusjs.dev/components/completion-meterhttps://wrnexusjs.dev/components/compliance-badge-listhttps://wrnexusjs.dev/components/compliance-program-cardhttps://wrnexusjs.dev/components/confirmation-dialoghttps://wrnexusjs.dev/components/confirm-password-inputhttps://wrnexusjs.dev/components/connected-account-cardhttps://wrnexusjs.dev/components/connection-cardhttps://wrnexusjs.dev/components/consent-timeline-previewhttps://wrnexusjs.dev/components/contact-cardhttps://wrnexusjs.dev/components/contact-ctahttps://wrnexusjs.dev/components/contact-formhttps://wrnexusjs.dev/components/contact-herohttps://wrnexusjs.dev/components/contact-page-shellhttps://wrnexusjs.dev/components/contact-sales-bannerhttps://wrnexusjs.dev/components/contact-sales-buttonhttps://wrnexusjs.dev/components/contact-sales-formhttps://wrnexusjs.dev/components/containerhttps://wrnexusjs.dev/components/context-menuhttps://wrnexusjs.dev/components/context-switcherhttps://wrnexusjs.dev/components/conversation-listhttps://wrnexusjs.dev/components/conversation-previewhttps://wrnexusjs.dev/components/conversion-charthttps://wrnexusjs.dev/components/cookie-bannerhttps://wrnexusjs.dev/components/cookie-category-listhttps://wrnexusjs.dev/components/cookie-category-togglehttps://wrnexusjs.dev/components/cookie-consenthttps://wrnexusjs.dev/components/cookie-details-tablehttps://wrnexusjs.dev/components/cookie-preferences-dialoghttps://wrnexusjs.dev/components/cookie-tablehttps://wrnexusjs.dev/components/coordinates-inputhttps://wrnexusjs.dev/components/coordinates-pickerhttps://wrnexusjs.dev/components/copy-buttonhttps://wrnexusjs.dev/components/copy-code-buttonhttps://wrnexusjs.dev/components/copy-secret-fieldhttps://wrnexusjs.dev/components/cost-breakdown-charthttps://wrnexusjs.dev/components/cost-summaryhttps://wrnexusjs.dev/components/counterhttps://wrnexusjs.dev/components/country-calling-code-inputhttps://wrnexusjs.dev/components/country-calling-code-selectorhttps://wrnexusjs.dev/components/country-selectorhttps://wrnexusjs.dev/components/coupon-inputhttps://wrnexusjs.dev/components/credit-amount-inputhttps://wrnexusjs.dev/components/cron-builderhttps://wrnexusjs.dev/components/cron-inputhttps://wrnexusjs.dev/components/csv-uploadhttps://wrnexusjs.dev/components/ctasectionhttps://wrnexusjs.dev/components/currency-inputhttps://wrnexusjs.dev/components/currency-selectorhttps://wrnexusjs.dev/components/current-password-inputhttps://wrnexusjs.dev/components/customer-logohttps://wrnexusjs.dev/components/customer-story-cardhttps://wrnexusjs.dev/components/danger-buttonhttps://wrnexusjs.dev/components/data-protection-cardhttps://wrnexusjs.dev/components/data-retention-tablehttps://wrnexusjs.dev/components/data-tablehttps://wrnexusjs.dev/components/date-inputhttps://wrnexusjs.dev/components/date-pickerhttps://wrnexusjs.dev/components/date-range-calendarhttps://wrnexusjs.dev/components/date-range-pickerhttps://wrnexusjs.dev/components/date-range-sliderhttps://wrnexusjs.dev/components/date-time-inputhttps://wrnexusjs.dev/components/date-time-pickerhttps://wrnexusjs.dev/components/date-time-range-pickerhttps://wrnexusjs.dev/components/decimal-inputhttps://wrnexusjs.dev/components/definition-listhttps://wrnexusjs.dev/components/delete-confirmation-dialoghttps://wrnexusjs.dev/components/delivery-previewhttps://wrnexusjs.dev/components/delivery-status-charthttps://wrnexusjs.dev/components/delivery-status-timelinehttps://wrnexusjs.dev/components/demo-request-formhttps://wrnexusjs.dev/components/department-inputhttps://wrnexusjs.dev/components/deprecated-feature-alerthttps://wrnexusjs.dev/components/description-listhttps://wrnexusjs.dev/components/desktop-navigationhttps://wrnexusjs.dev/components/developer-ctahttps://wrnexusjs.dev/components/developer-herohttps://wrnexusjs.dev/components/developer-page-shellhttps://wrnexusjs.dev/components/developer-searchhttps://wrnexusjs.dev/components/developers-mega-menuhttps://wrnexusjs.dev/components/developers-menuhttps://wrnexusjs.dev/components/device-cardhttps://wrnexusjs.dev/components/disclosurehttps://wrnexusjs.dev/components/discount-inputhttps://wrnexusjs.dev/components/display-headinghttps://wrnexusjs.dev/components/display-name-inputhttps://wrnexusjs.dev/components/dividerhttps://wrnexusjs.dev/components/document-previewhttps://wrnexusjs.dev/components/document-uploadhttps://wrnexusjs.dev/components/domain-inputhttps://wrnexusjs.dev/components/do-not-sell-linkhttps://wrnexusjs.dev/components/donut-charthttps://wrnexusjs.dev/components/download-actionhttps://wrnexusjs.dev/components/download-buttonhttps://wrnexusjs.dev/components/download-gate-formhttps://wrnexusjs.dev/components/download-policy-buttonhttps://wrnexusjs.dev/components/download-resource-formhttps://wrnexusjs.dev/components/drawerhttps://wrnexusjs.dev/components/dropdown-menuhttps://wrnexusjs.dev/components/dropdown-navigationhttps://wrnexusjs.dev/components/duration-inputhttps://wrnexusjs.dev/components/duration-pickerhttps://wrnexusjs.dev/components/duration-sliderhttps://wrnexusjs.dev/components/elevated-cardhttps://wrnexusjs.dev/components/email-body-editorhttps://wrnexusjs.dev/components/email-composerhttps://wrnexusjs.dev/components/email-inputhttps://wrnexusjs.dev/components/emoji-pickerhttps://wrnexusjs.dev/components/empty-statehttps://wrnexusjs.dev/components/encryption-diagramhttps://wrnexusjs.dev/components/enterprise-ctahttps://wrnexusjs.dev/components/enterprise-herohttps://wrnexusjs.dev/components/enterprise-pricing-cardhttps://wrnexusjs.dev/components/environment-selectorhttps://wrnexusjs.dev/components/environment-switcherhttps://wrnexusjs.dev/components/error-actionshttps://wrnexusjs.dev/components/error-cardhttps://wrnexusjs.dev/components/error-codehttps://wrnexusjs.dev/components/error-herohttps://wrnexusjs.dev/components/error-illustrationhttps://wrnexusjs.dev/components/error-pagehttps://wrnexusjs.dev/components/error-page-shellhttps://wrnexusjs.dev/components/error-statehttps://wrnexusjs.dev/components/error-support-linkhttps://wrnexusjs.dev/components/estimated-cost-summaryhttps://wrnexusjs.dev/components/event-tablehttps://wrnexusjs.dev/components/expandable-texthttps://wrnexusjs.dev/components/expiry-date-time-pickerhttps://wrnexusjs.dev/components/export-progresshttps://wrnexusjs.dev/components/external-linkhttps://wrnexusjs.dev/components/eyebrow-texthttps://wrnexusjs.dev/components/factor-cardhttps://wrnexusjs.dev/components/fallback-route-builderhttps://wrnexusjs.dev/components/fallback-route-diagramhttps://wrnexusjs.dev/components/faqhttps://wrnexusjs.dev/components/faqaccordionhttps://wrnexusjs.dev/components/favicon-uploadhttps://wrnexusjs.dev/components/fax-inputhttps://wrnexusjs.dev/components/feature-cardhttps://wrnexusjs.dev/components/feature-checklisthttps://wrnexusjs.dev/components/feature-comparison-tablehttps://wrnexusjs.dev/components/featured-blog-cardhttps://wrnexusjs.dev/components/feature-details-panelhttps://wrnexusjs.dev/components/feature-gridhttps://wrnexusjs.dev/components/feature-icon-cardhttps://wrnexusjs.dev/components/feature-listhttps://wrnexusjs.dev/components/feature-tabshttps://wrnexusjs.dev/components/feature-timelinehttps://wrnexusjs.dev/components/feature-unavailable-statehttps://wrnexusjs.dev/components/field-actionshttps://wrnexusjs.dev/components/file-upload-primitivehttps://wrnexusjs.dev/components/file-inputhttps://wrnexusjs.dev/components/file-listhttps://wrnexusjs.dev/components/file-size-inputhttps://wrnexusjs.dev/components/file-size-labelhttps://wrnexusjs.dev/components/file-type-badgehttps://wrnexusjs.dev/components/file-uploadhttps://wrnexusjs.dev/components/filterable-tablehttps://wrnexusjs.dev/components/filter-barhttps://wrnexusjs.dev/components/filter-menuhttps://wrnexusjs.dev/components/filter-search-inputhttps://wrnexusjs.dev/components/final-ctahttps://wrnexusjs.dev/components/first-name-inputhttps://wrnexusjs.dev/components/flexhttps://wrnexusjs.dev/components/font-pickerhttps://wrnexusjs.dev/components/font-size-pickerhttps://wrnexusjs.dev/components/font-weight-pickerhttps://wrnexusjs.dev/components/footer-language-switcherhttps://wrnexusjs.dev/components/footer-status-indicatorhttps://wrnexusjs.dev/components/forbidden-pagehttps://wrnexusjs.dev/components/forbidden-statehttps://wrnexusjs.dev/components/forgot-password-formhttps://wrnexusjs.dev/components/formhttps://wrnexusjs.dev/components/form-actionshttps://wrnexusjs.dev/components/form-alerthttps://wrnexusjs.dev/components/form-dialoghttps://wrnexusjs.dev/components/form-errorhttps://wrnexusjs.dev/components/form-error-summaryhttps://wrnexusjs.dev/components/form-fieldhttps://wrnexusjs.dev/components/form-gridhttps://wrnexusjs.dev/components/form-grouphttps://wrnexusjs.dev/components/form-help-texthttps://wrnexusjs.dev/components/form-labelhttps://wrnexusjs.dev/components/form-progresshttps://wrnexusjs.dev/components/form-rowhttps://wrnexusjs.dev/components/form-sectionhttps://wrnexusjs.dev/components/full-bleedhttps://wrnexusjs.dev/components/fullscreen-dialoghttps://wrnexusjs.dev/components/funnel-charthttps://wrnexusjs.dev/components/geo-charthttps://wrnexusjs.dev/components/geofence-editorhttps://wrnexusjs.dev/components/ghost-buttonhttps://wrnexusjs.dev/components/glass-cardhttps://wrnexusjs.dev/components/global-searchhttps://wrnexusjs.dev/components/gradient-ctahttps://wrnexusjs.dev/components/gradient-pickerhttps://wrnexusjs.dev/components/gradient-stop-editorhttps://wrnexusjs.dev/components/gridhttps://wrnexusjs.dev/components/guide-cardhttps://wrnexusjs.dev/components/guide-checklisthttps://wrnexusjs.dev/components/guide-difficulty-badgehttps://wrnexusjs.dev/components/guide-gridhttps://wrnexusjs.dev/components/guide-stephttps://wrnexusjs.dev/components/headerhttps://wrnexusjs.dev/components/header-actionshttps://wrnexusjs.dev/components/health-indicatorhttps://wrnexusjs.dev/components/herohttps://wrnexusjs.dev/components/hero-actionshttps://wrnexusjs.dev/components/hero-code-panelhttps://wrnexusjs.dev/components/hero-gradient-texthttps://wrnexusjs.dev/components/hero-primary-actionhttps://wrnexusjs.dev/components/hero-product-previewhttps://wrnexusjs.dev/components/hero-secondary-actionhttps://wrnexusjs.dev/components/hero-trust-texthttps://wrnexusjs.dev/components/hex-color-inputhttps://wrnexusjs.dev/components/hidden-fieldhttps://wrnexusjs.dev/components/highlight-texthttps://wrnexusjs.dev/components/holiday-calendarhttps://wrnexusjs.dev/components/hostname-inputhttps://wrnexusjs.dev/components/hour-pickerhttps://wrnexusjs.dev/components/hsl-color-inputhttps://wrnexusjs.dev/components/hstackhttps://wrnexusjs.dev/components/html-editorhttps://wrnexusjs.dev/components/human-approval-stephttps://wrnexusjs.dev/components/iconhttps://wrnexusjs.dev/components/icon-buttonhttps://wrnexusjs.dev/components/icon-pickerhttps://wrnexusjs.dev/components/icon-selectorhttps://wrnexusjs.dev/components/identifier-inputhttps://wrnexusjs.dev/components/illustrationhttps://wrnexusjs.dev/components/image-compression-previewhttps://wrnexusjs.dev/components/image-editorhttps://wrnexusjs.dev/components/image-preview-dialoghttps://wrnexusjs.dev/components/image-selectorhttps://wrnexusjs.dev/components/image-uploadhttps://wrnexusjs.dev/components/import-progresshttps://wrnexusjs.dev/components/incident-alerthttps://wrnexusjs.dev/components/incident-bannerhttps://wrnexusjs.dev/components/incident-cardhttps://wrnexusjs.dev/components/incident-listhttps://wrnexusjs.dev/components/incident-response-flowhttps://wrnexusjs.dev/components/incident-severity-badgehttps://wrnexusjs.dev/components/incident-timelinehttps://wrnexusjs.dev/components/industry-badgehttps://wrnexusjs.dev/components/industry-selectorhttps://wrnexusjs.dev/components/info-cardhttps://wrnexusjs.dev/components/inlinehttps://wrnexusjs.dev/components/inline-alerthttps://wrnexusjs.dev/components/inline-codehttps://wrnexusjs.dev/components/inputhttps://wrnexusjs.dev/components/input-grouphttps://wrnexusjs.dev/components/inset-panelhttps://wrnexusjs.dev/components/integer-inputhttps://wrnexusjs.dev/components/integration-cardhttps://wrnexusjs.dev/components/invoice-line-itemhttps://wrnexusjs.dev/components/invoice-summaryhttps://wrnexusjs.dev/components/ip-address-inputhttps://wrnexusjs.dev/components/job-cardhttps://wrnexusjs.dev/components/job-progresshttps://wrnexusjs.dev/components/job-title-inputhttps://wrnexusjs.dev/components/json-inputhttps://wrnexusjs.dev/components/json-viewerhttps://wrnexusjs.dev/components/key-value-tablehttps://wrnexusjs.dev/components/kyc-document-uploadhttps://wrnexusjs.dev/components/language-selectorhttps://wrnexusjs.dev/components/language-switcherhttps://wrnexusjs.dev/components/last-name-inputhttps://wrnexusjs.dev/components/latency-metrichttps://wrnexusjs.dev/components/latitude-inputhttps://wrnexusjs.dev/components/leadership-gridhttps://wrnexusjs.dev/components/lead-texthttps://wrnexusjs.dev/components/legal-acceptance-noticehttps://wrnexusjs.dev/components/legal-bullet-listhttps://wrnexusjs.dev/components/legal-contact-blockhttps://wrnexusjs.dev/components/legal-definition-listhttps://wrnexusjs.dev/components/legal-document-headerhttps://wrnexusjs.dev/components/legal-document-layouthttps://wrnexusjs.dev/components/legal-herohttps://wrnexusjs.dev/components/legal-language-selectorhttps://wrnexusjs.dev/components/legal-noticehttps://wrnexusjs.dev/components/legal-page-shellhttps://wrnexusjs.dev/components/legal-print-buttonhttps://wrnexusjs.dev/components/legal-region-selectorhttps://wrnexusjs.dev/components/legal-sectionhttps://wrnexusjs.dev/components/legal-summaryhttps://wrnexusjs.dev/components/legal-tablehttps://wrnexusjs.dev/components/legal-table-of-contentshttps://wrnexusjs.dev/components/legal-version-badgehttps://wrnexusjs.dev/components/letter-spacing-pickerhttps://wrnexusjs.dev/components/license-key-inputhttps://wrnexusjs.dev/components/lightboxhttps://wrnexusjs.dev/components/line-charthttps://wrnexusjs.dev/components/line-height-pickerhttps://wrnexusjs.dev/components/linkhttps://wrnexusjs.dev/components/link-buttonhttps://wrnexusjs.dev/components/listhttps://wrnexusjs.dev/components/loading-buttonhttps://wrnexusjs.dev/components/locale-selectorhttps://wrnexusjs.dev/components/localized-route-linkhttps://wrnexusjs.dev/components/location-pickerhttps://wrnexusjs.dev/components/logohttps://wrnexusjs.dev/components/logo-cloudhttps://wrnexusjs.dev/components/logo-uploadhttps://wrnexusjs.dev/components/logout-dialoghttps://wrnexusjs.dev/components/log-tablehttps://wrnexusjs.dev/components/longitude-inputhttps://wrnexusjs.dev/components/maintenance-alerthttps://wrnexusjs.dev/components/maintenance-bannerhttps://wrnexusjs.dev/components/maintenance-cardhttps://wrnexusjs.dev/components/maintenance-pagehttps://wrnexusjs.dev/components/maintenance-statehttps://wrnexusjs.dev/components/maintenance-window-pickerhttps://wrnexusjs.dev/components/map-pickerhttps://wrnexusjs.dev/components/markdown-editorhttps://wrnexusjs.dev/components/marketing-page-shellhttps://wrnexusjs.dev/components/marketing-section-headerhttps://wrnexusjs.dev/components/masked-secret-fieldhttps://wrnexusjs.dev/components/mega-menuhttps://wrnexusjs.dev/components/member-listhttps://wrnexusjs.dev/components/mention-inputhttps://wrnexusjs.dev/components/message-character-counterhttps://wrnexusjs.dev/components/message-composerhttps://wrnexusjs.dev/components/message-composer-previewhttps://wrnexusjs.dev/components/message-limit-inputhttps://wrnexusjs.dev/components/message-previewhttps://wrnexusjs.dev/components/message-volume-sliderhttps://wrnexusjs.dev/components/metrichttps://wrnexusjs.dev/components/metric-cardhttps://wrnexusjs.dev/components/metric-gridhttps://wrnexusjs.dev/components/metric-texthttps://wrnexusjs.dev/components/minute-pickerhttps://wrnexusjs.dev/components/mission-sectionhttps://wrnexusjs.dev/components/mobile-device-framehttps://wrnexusjs.dev/components/mobile-inputhttps://wrnexusjs.dev/components/mobile-menu-buttonhttps://wrnexusjs.dev/components/mobile-navigationhttps://wrnexusjs.dev/components/mobile-table-cardhttps://wrnexusjs.dev/components/modalhttps://wrnexusjs.dev/components/monthly-volume-selectorhttps://wrnexusjs.dev/components/month-pickerhttps://wrnexusjs.dev/components/month-year-pickerhttps://wrnexusjs.dev/components/multi-file-uploadhttps://wrnexusjs.dev/components/multiple-email-inputhttps://wrnexusjs.dev/components/multi-selecthttps://wrnexusjs.dev/components/muted-texthttps://wrnexusjs.dev/components/name-inputhttps://wrnexusjs.dev/components/narrow-containerhttps://wrnexusjs.dev/components/navigationhttps://wrnexusjs.dev/components/navigation-itemhttps://wrnexusjs.dev/components/navigation-mega-menuhttps://wrnexusjs.dev/components/new-badgehttps://wrnexusjs.dev/components/new-password-inputhttps://wrnexusjs.dev/components/newsletter-ctahttps://wrnexusjs.dev/components/newsletter-formhttps://wrnexusjs.dev/components/no-results-statehttps://wrnexusjs.dev/components/not-found-pagehttps://wrnexusjs.dev/components/not-found-statehttps://wrnexusjs.dev/components/notification-cardhttps://wrnexusjs.dev/components/notification-dothttps://wrnexusjs.dev/components/notification-listhttps://wrnexusjs.dev/components/number-inputhttps://wrnexusjs.dev/components/office-cardhttps://wrnexusjs.dev/components/offline-pagehttps://wrnexusjs.dev/components/offline-statehttps://wrnexusjs.dev/components/onboarding-progresshttps://wrnexusjs.dev/components/one-time-secret-displayhttps://wrnexusjs.dev/components/online-indicatorhttps://wrnexusjs.dev/components/opacity-sliderhttps://wrnexusjs.dev/components/open-apictahttps://wrnexusjs.dev/components/optional-indicatorhttps://wrnexusjs.dev/components/organization-selectorhttps://wrnexusjs.dev/components/otp-inputhttps://wrnexusjs.dev/components/otp-verification-formhttps://wrnexusjs.dev/components/outlined-cardhttps://wrnexusjs.dev/components/page-alerthttps://wrnexusjs.dev/components/page-headerhttps://wrnexusjs.dev/components/page-headinghttps://wrnexusjs.dev/components/page-shellhttps://wrnexusjs.dev/components/page-skeletonhttps://wrnexusjs.dev/components/paginationhttps://wrnexusjs.dev/components/panelhttps://wrnexusjs.dev/components/partner-application-formhttps://wrnexusjs.dev/components/partner-logo-gridhttps://wrnexusjs.dev/components/partner-program-cardhttps://wrnexusjs.dev/components/passkey-buttonhttps://wrnexusjs.dev/components/password-inputhttps://wrnexusjs.dev/components/password-requirement-listhttps://wrnexusjs.dev/components/password-strength-meterhttps://wrnexusjs.dev/components/password-visibility-togglehttps://wrnexusjs.dev/components/path-inputhttps://wrnexusjs.dev/components/payment-method-cardhttps://wrnexusjs.dev/components/pdf-previewhttps://wrnexusjs.dev/components/percentage-inputhttps://wrnexusjs.dev/components/permission-selectorhttps://wrnexusjs.dev/components/phone-inputhttps://wrnexusjs.dev/components/pie-charthttps://wrnexusjs.dev/components/pillhttps://wrnexusjs.dev/components/pin-inputhttps://wrnexusjs.dev/components/plain-text-editorhttps://wrnexusjs.dev/components/plan-ctahttps://wrnexusjs.dev/components/plan-feature-listhttps://wrnexusjs.dev/components/plan-limit-listhttps://wrnexusjs.dev/components/plan-selectorhttps://wrnexusjs.dev/components/platform-pillar-cardhttps://wrnexusjs.dev/components/policy-version-tablehttps://wrnexusjs.dev/components/popoverhttps://wrnexusjs.dev/components/port-inputhttps://wrnexusjs.dev/components/port-number-inputhttps://wrnexusjs.dev/components/positive-number-inputhttps://wrnexusjs.dev/components/postal-code-inputhttps://wrnexusjs.dev/components/postman-ctahttps://wrnexusjs.dev/components/preset-date-range-pickerhttps://wrnexusjs.dev/components/press-release-cardhttps://wrnexusjs.dev/components/preview-badgehttps://wrnexusjs.dev/components/previous-next-navigationhttps://wrnexusjs.dev/components/price-inputhttps://wrnexusjs.dev/components/price-range-sliderhttps://wrnexusjs.dev/components/price-texthttps://wrnexusjs.dev/components/pricing-cardhttps://wrnexusjs.dev/components/pricing-comparison-tablehttps://wrnexusjs.dev/components/pricing-contact-formhttps://wrnexusjs.dev/components/pricing-feature-grouphttps://wrnexusjs.dev/components/pricing-gridhttps://wrnexusjs.dev/components/pricing-herohttps://wrnexusjs.dev/components/pricing-plan-cardhttps://wrnexusjs.dev/components/pricing-tablehttps://wrnexusjs.dev/components/pricing-togglehttps://wrnexusjs.dev/components/primary-buttonhttps://wrnexusjs.dev/components/print-actionhttps://wrnexusjs.dev/components/print-policy-buttonhttps://wrnexusjs.dev/components/priority-selectorhttps://wrnexusjs.dev/components/privacy-noticehttps://wrnexusjs.dev/components/product-architecture-diagramhttps://wrnexusjs.dev/components/product-cardhttps://wrnexusjs.dev/components/product-category-sectionhttps://wrnexusjs.dev/components/product-ctahttps://wrnexusjs.dev/components/product-feature-listhttps://wrnexusjs.dev/components/product-gridhttps://wrnexusjs.dev/components/product-herohttps://wrnexusjs.dev/components/product-iconhttps://wrnexusjs.dev/components/product-integration-listhttps://wrnexusjs.dev/components/product-listhttps://wrnexusjs.dev/components/product-logohttps://wrnexusjs.dev/components/product-mega-menuhttps://wrnexusjs.dev/components/product-mini-cardhttps://wrnexusjs.dev/components/product-navigation-cardhttps://wrnexusjs.dev/components/product-page-shellhttps://wrnexusjs.dev/components/product-selectorhttps://wrnexusjs.dev/components/products-mega-menuhttps://wrnexusjs.dev/components/product-status-badgehttps://wrnexusjs.dev/components/product-use-case-listhttps://wrnexusjs.dev/components/progresshttps://wrnexusjs.dev/components/progress-barhttps://wrnexusjs.dev/components/progress-charthttps://wrnexusjs.dev/components/progress-ringhttps://wrnexusjs.dev/components/progress-sliderhttps://wrnexusjs.dev/components/project-cardhttps://wrnexusjs.dev/components/project-selectorhttps://wrnexusjs.dev/components/project-switcherhttps://wrnexusjs.dev/components/promo-code-inputhttps://wrnexusjs.dev/components/prompt-dialoghttps://wrnexusjs.dev/components/provider-selectorhttps://wrnexusjs.dev/components/public-footerhttps://wrnexusjs.dev/components/public-headerhttps://wrnexusjs.dev/components/public-header-logohttps://wrnexusjs.dev/components/public-mobile-navigationhttps://wrnexusjs.dev/components/public-page-shellhttps://wrnexusjs.dev/components/public-searchhttps://wrnexusjs.dev/components/publish-date-time-pickerhttps://wrnexusjs.dev/components/push-composerhttps://wrnexusjs.dev/components/push-notification-editorhttps://wrnexusjs.dev/components/qr-codehttps://wrnexusjs.dev/components/quantity-inputhttps://wrnexusjs.dev/components/quantity-stepperhttps://wrnexusjs.dev/components/quiet-hours-pickerhttps://wrnexusjs.dev/components/quote-texthttps://wrnexusjs.dev/components/radiohttps://wrnexusjs.dev/components/radio-grouphttps://wrnexusjs.dev/components/range-inputhttps://wrnexusjs.dev/components/range-sliderhttps://wrnexusjs.dev/components/rate-limited-statehttps://wrnexusjs.dev/components/rate-limit-inputhttps://wrnexusjs.dev/components/rate-limit-pagehttps://wrnexusjs.dev/components/rate-tablehttps://wrnexusjs.dev/components/rating-sliderhttps://wrnexusjs.dev/components/recipient-selectorhttps://wrnexusjs.dev/components/recovery-code-formhttps://wrnexusjs.dev/components/recovery-code-inputhttps://wrnexusjs.dev/components/recurrence-rule-builderhttps://wrnexusjs.dev/components/recurring-schedule-pickerhttps://wrnexusjs.dev/components/redirect-uri-inputhttps://wrnexusjs.dev/components/reference-inputhttps://wrnexusjs.dev/components/regex-inputhttps://wrnexusjs.dev/components/regional-privacy-bannerhttps://wrnexusjs.dev/components/region-availability-tablehttps://wrnexusjs.dev/components/region-selectorhttps://wrnexusjs.dev/components/region-unavailable-alerthttps://wrnexusjs.dev/components/region-unavailable-statehttps://wrnexusjs.dev/components/reject-optional-cookies-buttonhttps://wrnexusjs.dev/components/reopen-cookie-settings-buttonhttps://wrnexusjs.dev/components/report-cardhttps://wrnexusjs.dev/components/request-response-viewerhttps://wrnexusjs.dev/components/request-viewerhttps://wrnexusjs.dev/components/required-indicatorhttps://wrnexusjs.dev/components/reset-password-formhttps://wrnexusjs.dev/components/resizable-panelhttps://wrnexusjs.dev/components/resource-cardhttps://wrnexusjs.dev/components/resource-download-cardhttps://wrnexusjs.dev/components/resource-page-shellhttps://wrnexusjs.dev/components/resource-searchhttps://wrnexusjs.dev/components/resources-mega-menuhttps://wrnexusjs.dev/components/resource-type-badgehttps://wrnexusjs.dev/components/response-viewerhttps://wrnexusjs.dev/components/responsible-disclosure-ctahttps://wrnexusjs.dev/components/responsive-tablehttps://wrnexusjs.dev/components/results-sectionhttps://wrnexusjs.dev/components/retention-tablehttps://wrnexusjs.dev/components/retry-count-inputhttps://wrnexusjs.dev/components/revenue-charthttps://wrnexusjs.dev/components/rgb-color-inputhttps://wrnexusjs.dev/components/rich-text-editorhttps://wrnexusjs.dev/components/rich-text-inputhttps://wrnexusjs.dev/components/role-selectorhttps://wrnexusjs.dev/components/rolling-date-range-pickerhttps://wrnexusjs.dev/components/save-cookie-preferences-buttonhttps://wrnexusjs.dev/components/saved-filter-selectorhttps://wrnexusjs.dev/components/scheduled-date-time-pickerhttps://wrnexusjs.dev/components/schedule-message-pickerhttps://wrnexusjs.dev/components/schedule-pickerhttps://wrnexusjs.dev/components/screenshot-framehttps://wrnexusjs.dev/components/scroll-areahttps://wrnexusjs.dev/components/sdkcardhttps://wrnexusjs.dev/components/sdk-language-selectorhttps://wrnexusjs.dev/components/sdklanguage-tabshttps://wrnexusjs.dev/components/sdktabshttps://wrnexusjs.dev/components/search-buttonhttps://wrnexusjs.dev/components/search-category-tabshttps://wrnexusjs.dev/components/search-dialoghttps://wrnexusjs.dev/components/search-empty-statehttps://wrnexusjs.dev/components/search-inputhttps://wrnexusjs.dev/components/search-loading-statehttps://wrnexusjs.dev/components/search-result-itemhttps://wrnexusjs.dev/components/secondary-buttonhttps://wrnexusjs.dev/components/second-pickerhttps://wrnexusjs.dev/components/secret-displayhttps://wrnexusjs.dev/components/secret-inputhttps://wrnexusjs.dev/components/secret-reveal-dialoghttps://wrnexusjs.dev/components/sectionhttps://wrnexusjs.dev/components/section-actionshttps://wrnexusjs.dev/components/section-headerhttps://wrnexusjs.dev/components/section-headinghttps://wrnexusjs.dev/components/security-alerthttps://wrnexusjs.dev/components/security-contact-cardhttps://wrnexusjs.dev/components/security-feature-cardhttps://wrnexusjs.dev/components/security-herohttps://wrnexusjs.dev/components/security-pillar-gridhttps://wrnexusjs.dev/components/security-practice-listhttps://wrnexusjs.dev/components/security-report-formhttps://wrnexusjs.dev/components/selecthttps://wrnexusjs.dev/components/sender-id-inputhttps://wrnexusjs.dev/components/server-error-pagehttps://wrnexusjs.dev/components/service-level-tablehttps://wrnexusjs.dev/components/service-status-badgehttps://wrnexusjs.dev/components/service-status-listhttps://wrnexusjs.dev/components/service-status-rowhttps://wrnexusjs.dev/components/session-cardhttps://wrnexusjs.dev/components/session-expired-dialoghttps://wrnexusjs.dev/components/setup-checklisthttps://wrnexusjs.dev/components/severity-selectorhttps://wrnexusjs.dev/components/shadow-pickerhttps://wrnexusjs.dev/components/share-actionhttps://wrnexusjs.dev/components/share-buttonhttps://wrnexusjs.dev/components/sidebar-layouthttps://wrnexusjs.dev/components/side-panelhttps://wrnexusjs.dev/components/sign-in-formhttps://wrnexusjs.dev/components/sign-in-linkhttps://wrnexusjs.dev/components/sign-up-formhttps://wrnexusjs.dev/components/site-searchhttps://wrnexusjs.dev/components/skeletonhttps://wrnexusjs.dev/components/skip-linkhttps://wrnexusjs.dev/components/sla-tablehttps://wrnexusjs.dev/components/sliderhttps://wrnexusjs.dev/components/slug-inputhttps://wrnexusjs.dev/components/small-texthttps://wrnexusjs.dev/components/smart-route-diagramhttps://wrnexusjs.dev/components/sms-composerhttps://wrnexusjs.dev/components/sms-message-editorhttps://wrnexusjs.dev/components/sms-segment-counterhttps://wrnexusjs.dev/components/social-sharehttps://wrnexusjs.dev/components/solution-herohttps://wrnexusjs.dev/components/solution-page-shellhttps://wrnexusjs.dev/components/solution-sectionhttps://wrnexusjs.dev/components/solutions-mega-menuhttps://wrnexusjs.dev/components/sortable-tablehttps://wrnexusjs.dev/components/spacerhttps://wrnexusjs.dev/components/spinnerhttps://wrnexusjs.dev/components/split-buttonhttps://wrnexusjs.dev/components/split-ctahttps://wrnexusjs.dev/components/split-herohttps://wrnexusjs.dev/components/split-layouthttps://wrnexusjs.dev/components/split-section-headerhttps://wrnexusjs.dev/components/stackhttps://wrnexusjs.dev/components/start-free-buttonhttps://wrnexusjs.dev/components/stat-cardhttps://wrnexusjs.dev/components/state-selectorhttps://wrnexusjs.dev/components/status-badgehttps://wrnexusjs.dev/components/status-bannerhttps://wrnexusjs.dev/components/status-page-shellhttps://wrnexusjs.dev/components/status-selectorhttps://wrnexusjs.dev/components/status-subscribe-formhttps://wrnexusjs.dev/components/status-tablehttps://wrnexusjs.dev/components/step-navigationhttps://wrnexusjs.dev/components/stepperhttps://wrnexusjs.dev/components/stepper-inputhttps://wrnexusjs.dev/components/step-up-authentication-dialoghttps://wrnexusjs.dev/components/sticker-pickerhttps://wrnexusjs.dev/components/stickyhttps://wrnexusjs.dev/components/sticky-layouthttps://wrnexusjs.dev/components/street-address-inputhttps://wrnexusjs.dev/components/subdomain-inputhttps://wrnexusjs.dev/components/subject-inputhttps://wrnexusjs.dev/components/subprocessor-tablehttps://wrnexusjs.dev/components/subsection-headinghttps://wrnexusjs.dev/components/success-cardhttps://wrnexusjs.dev/components/success-statehttps://wrnexusjs.dev/components/support-request-formhttps://wrnexusjs.dev/components/surfacehttps://wrnexusjs.dev/components/switchhttps://wrnexusjs.dev/components/tablehttps://wrnexusjs.dev/components/table-headerhttps://wrnexusjs.dev/components/table-rowhttps://wrnexusjs.dev/components/table-skeletonhttps://wrnexusjs.dev/components/tabshttps://wrnexusjs.dev/components/taghttps://wrnexusjs.dev/components/tag-inputhttps://wrnexusjs.dev/components/tax-noticehttps://wrnexusjs.dev/components/tax-rate-inputhttps://wrnexusjs.dev/components/team-member-cardhttps://wrnexusjs.dev/components/team-size-selectorhttps://wrnexusjs.dev/components/template-cardhttps://wrnexusjs.dev/components/template-selectorhttps://wrnexusjs.dev/components/template-variable-inputhttps://wrnexusjs.dev/components/tenant-isolation-diagramhttps://wrnexusjs.dev/components/terminal-blockhttps://wrnexusjs.dev/components/tertiary-buttonhttps://wrnexusjs.dev/components/testimonial-cardhttps://wrnexusjs.dev/components/testimonial-carouselhttps://wrnexusjs.dev/components/test-message-dialoghttps://wrnexusjs.dev/components/textareahttps://wrnexusjs.dev/components/text-inputhttps://wrnexusjs.dev/components/text-linkhttps://wrnexusjs.dev/components/text-skeletonhttps://wrnexusjs.dev/components/theme-togglehttps://wrnexusjs.dev/components/theme-color-pickerhttps://wrnexusjs.dev/components/theme-switcherhttps://wrnexusjs.dev/components/time-inputhttps://wrnexusjs.dev/components/timelinehttps://wrnexusjs.dev/components/timeline-charthttps://wrnexusjs.dev/components/timeline-itemhttps://wrnexusjs.dev/components/timeout-inputhttps://wrnexusjs.dev/components/time-pickerhttps://wrnexusjs.dev/components/time-range-pickerhttps://wrnexusjs.dev/components/timezone-aware-time-pickerhttps://wrnexusjs.dev/components/timezone-selectorhttps://wrnexusjs.dev/components/toasthttps://wrnexusjs.dev/components/toast-actionhttps://wrnexusjs.dev/components/toast-hosthttps://wrnexusjs.dev/components/toast-iconhttps://wrnexusjs.dev/components/toast-progresshttps://wrnexusjs.dev/components/togglehttps://wrnexusjs.dev/components/toggle-grouphttps://wrnexusjs.dev/components/token-inputhttps://wrnexusjs.dev/components/tooltiphttps://wrnexusjs.dev/components/totp-verification-formhttps://wrnexusjs.dev/components/translated-texthttps://wrnexusjs.dev/components/tree-tablehttps://wrnexusjs.dev/components/trend-indicatorhttps://wrnexusjs.dev/components/truncated-texthttps://wrnexusjs.dev/components/trust-badge-listhttps://wrnexusjs.dev/components/typographyhttps://wrnexusjs.dev/components/unavailable-region-statehttps://wrnexusjs.dev/components/unified-timeline-previewhttps://wrnexusjs.dev/components/unsaved-changes-dialoghttps://wrnexusjs.dev/components/upload-itemhttps://wrnexusjs.dev/components/upload-previewhttps://wrnexusjs.dev/components/upload-progresshttps://wrnexusjs.dev/components/uptime-charthttps://wrnexusjs.dev/components/uptime-metrichttps://wrnexusjs.dev/components/url-inputhttps://wrnexusjs.dev/components/usage-pricing-tablehttps://wrnexusjs.dev/components/use-case-selectorhttps://wrnexusjs.dev/components/user-cardhttps://wrnexusjs.dev/components/username-inputhttps://wrnexusjs.dev/components/value-cardhttps://wrnexusjs.dev/components/values-gridhttps://wrnexusjs.dev/components/verification-code-inputhttps://wrnexusjs.dev/components/verified-badgehttps://wrnexusjs.dev/components/version-selectorhttps://wrnexusjs.dev/components/vertical-tabshttps://wrnexusjs.dev/components/video-cardhttps://wrnexusjs.dev/components/video-preview-dialoghttps://wrnexusjs.dev/components/video-uploadhttps://wrnexusjs.dev/components/virtualized-tablehttps://wrnexusjs.dev/components/vision-sectionhttps://wrnexusjs.dev/components/visually-hiddenhttps://wrnexusjs.dev/components/voice-script-composerhttps://wrnexusjs.dev/components/voice-script-editorhttps://wrnexusjs.dev/components/volume-inputhttps://wrnexusjs.dev/components/volume-sliderhttps://wrnexusjs.dev/components/warning-cardhttps://wrnexusjs.dev/components/webhook-event-cardhttps://wrnexusjs.dev/components/webhook-flow-diagramhttps://wrnexusjs.dev/components/webhook-payload-viewerhttps://wrnexusjs.dev/components/webhook-url-inputhttps://wrnexusjs.dev/components/webinar-cardhttps://wrnexusjs.dev/components/webinar-registration-formhttps://wrnexusjs.dev/components/wellhttps://wrnexusjs.dev/components/whats-app-composerhttps://wrnexusjs.dev/components/whats-app-number-inputhttps://wrnexusjs.dev/components/whats-app-template-editorhttps://wrnexusjs.dev/components/wide-containerhttps://wrnexusjs.dev/components/wizardhttps://wrnexusjs.dev/components/wizard-headerhttps://wrnexusjs.dev/components/wizard-navigationhttps://wrnexusjs.dev/components/workflow-canvas-previewhttps://wrnexusjs.dev/components/workflow-progresshttps://wrnexusjs.dev/components/workspace-cardhttps://wrnexusjs.dev/components/workspace-selectorhttps://wrnexusjs.dev/components/workspace-switcherhttps://wrnexusjs.dev/components/year-pickerhttps://wrnexusjs.dev/components/zoom-slider