@public-ui/components
Version:
Contains all web components that belong to KoliBri - The accessible HTML-Standard.
40 lines (20 loc) • 2.37 kB
Markdown
# kol-accordion
<!-- Auto Generated Below -->
## Properties
| Property | Attribute | Description | Type | Default |
| --------------------- | ----------- | ------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------- | ----------- |
| `_disabled` | `_disabled` | Makes the element not focusable and ignore all events. | `boolean \| undefined` | `false` |
| `_label` _(required)_ | `_label` | Defines the visible or semantic label of the component (e.g. aria-label, label, headline, caption, summary, etc.). | `string` | `undefined` |
| `_level` | `_level` | Defines which H-level from 1-6 the heading has. 0 specifies no heading and is shown as bold text. | `0 \| 1 \| 2 \| 3 \| 4 \| 5 \| 6 \| undefined` | `0` |
| `_on` | `_on` | Gibt die EventCallback-Funktionen an. | `undefined \| { onClick?: EventValueOrEventCallback<MouseEvent, boolean> \| undefined; }` | `undefined` |
| `_open` | `_open` | Opens/expands the element when truthy, closes/collapses when falsy. | `boolean \| undefined` | `false` |
## Methods
### `kolFocus() => Promise<void>`
Sets focus on the internal element.
#### Returns
Type: `Promise<void>`
## Slots
| Slot | Description |
| ---- | ------------------------------------------------------------------------------- |
| | Ermöglicht das Einfügen beliebigen HTML's in den Inhaltsbereich des Accordions. |
----------------------------------------------