release: WRNexusJS 0.2.55

This commit is contained in:
2026-07-19 17:14:12 +05:30
parent 6dbc75c370
commit 12beb6f4ba
199 changed files with 1687 additions and 85 deletions
+9
View File
@@ -0,0 +1,9 @@
component ClickableCard {
props {
title = ""
description = ""
href = ""
class = ""
}
view { <article class="wire-card wire-catalog-card wire-catalog-card--clickable {class}"><h3 data-show="title">{title}</h3><p data-show="description">{description}</p><slot /><a data-show="href" href="{href}" class="wire-catalog-card__link"><span class="wire-visually-hidden">Open {title}</span></a></article> }
}