Props
| Prop | Type | Default | Notes |
|---|---|---|---|
appearance | normal | contained | separated | unstyled | normal | |
icon-start | boolean | false | |
multiple | boolean | false | |
opened-icon | string | mdi:chevron-down | |
closed-icon | string | mdi:chevron-right |
StellarUI
Grouped native details wrapper that owns shared appearance, affordance placement, and indicator icons for its items.
Click the Sign Up button in the top right corner and follow the registration process.
Use the Forgot Password flow on the login page and follow the reset link from your email.
Open account settings, choose Edit Profile, and save the updated details.
<stellar-accordion
closed-icon="mdi:chevron-right"
opened-icon="mdi:chevron-down"
>
<details open>
<summary>How do I create an account?</summary>
<p>Click the Sign Up button in the top right corner and follow the registration process.</p>
</details>
<details>
<summary>I forgot my password. What should I do?</summary>
<p>Use the Forgot Password flow on the login page and follow the reset link from your email.</p>
</details>
<details>
<summary>How do I update my profile information?</summary>
<p>Open account settings, choose Edit Profile, and save the updated details.</p>
</details>
</stellar-accordion>Complete props, events, slots, and implementation notes for the shipped accordion.
| Prop | Type | Default | Notes |
|---|---|---|---|
appearance | normal | contained | separated | unstyled | normal | |
icon-start | boolean | false | |
multiple | boolean | false | |
opened-icon | string | mdi:chevron-down | |
closed-icon | string | mdi:chevron-right |
| Event | Source | Notes |
|---|---|---|
| native toggle events | authored <details> | Each disclosure keeps normal browser open or close behavior while the parent accordion manages whether one or many panels may stay open. |
| custom events | none | stellar-accordion does not emit custom events. |
| Slot | Notes |
|---|---|
| default | Author one or more direct native <details> children. Each item should include a <summary> followed by the body content. The parent accordion owns single-open vs multi-open behavior through multiple. |