release: WRNexusJS 0.2.54

This commit is contained in:
2026-07-19 15:51:27 +05:30
parent 7cee13526e
commit 6dbc75c370
127 changed files with 2211 additions and 88 deletions
+12
View File
@@ -0,0 +1,12 @@
component FormLabel {
props {
for = ""
label = "Label"
required = false
optional = false
class = ""
}
view {
<label for="{for}" class="wire-label {class}">{label}<span data-show="required" class="wire-required" aria-hidden="true"> *</span><span data-show="optional && !required" class="wire-optional"> (optional)</span></label>
}
}