Run "yarn build:docs"

This commit is contained in:
Eric Liu 2022-03-19 08:36:33 -07:00
commit a2c40aa6c3
3 changed files with 12 additions and 3 deletions

View file

@ -686,7 +686,9 @@ export interface ComboBoxItem {
### Slots
None.
| Slot name | Default | Props | Fallback |
| :-------- | :------ | :-------------------------------------------------- | :-------------------------------- |
| -- | Yes | <code>{ item: ComboBoxItem; index: number } </code> | <code>{itemToString(item)}</code> |
### Events

View file

@ -1639,7 +1639,14 @@
}
],
"moduleExports": [],
"slots": [],
"slots": [
{
"name": "__default__",
"default": true,
"fallback": "{itemToString(item)}",
"slot_props": "{ item: ComboBoxItem; index: number }"
}
],
"events": [
{
"type": "dispatched",

View file

@ -157,7 +157,7 @@ export default class ComboBox extends SvelteComponentTyped<
clear: WindowEventMap["clear"];
scroll: WindowEventMap["scroll"];
},
{}
{ default: { item: ComboBoxItem; index: number } }
> {
/**
* Clear the combo box programmatically