Run "yarn build:docs"

This commit is contained in:
Eric Liu 2022-06-01 19:09:56 -07:00
commit b8aab465bb
6 changed files with 31 additions and 6 deletions

View file

@ -6,6 +6,7 @@ export type ComboBoxItemId = any;
export interface ComboBoxItem {
id: ComboBoxItemId;
text: string;
disabled?: boolean;
}
export interface ComboBoxProps

View file

@ -8,6 +8,7 @@ export type DropdownItemText = string;
export interface DropdownItem {
id: DropdownItemId;
text: DropdownItemText;
disabled?: boolean;
}
export interface DropdownProps

View file

@ -14,6 +14,12 @@ export interface ListBoxMenuItemProps
* @default false
*/
highlighted?: boolean;
/**
* Set to `true` to disable the menu item
* @default false
*/
disabled?: boolean;
}
export default class ListBoxMenuItem extends SvelteComponentTyped<

View file

@ -8,6 +8,7 @@ export type MultiSelectItemText = string;
export interface MultiSelectItem {
id: MultiSelectItemId;
text: MultiSelectItemText;
disabled?: boolean;
}
export interface MultiSelectProps