first commit

This commit is contained in:
2026-07-12 15:55:18 +05:30
commit ee98026cc5
404 changed files with 44522 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
// Expand/collapse section using native <details> (no JS).
component Disclosure {
props {
summary = "Details"
class = ""
}
view {
<details class="wire-disclosure {class}">
<summary class="wire-disclosure__summary">{summary}</summary>
<div class="wire-disclosure__body"><slot></slot></div>
</details>
}
}