Plugins

Covers Engine Plugin SDK 2.0.0 · Interface Plugin SDK 0.2.0

SelectItemProps

Props accepted by a selectable item.

Import

import type { SelectItemProps } from "@dartwic/interface-sdk/ui";

Declaration

export interface SelectItemProps extends HostComponentProps {
    /** Value produced when this item is selected. */
    value: string;
    /** Disables this item. */
    disabled?: boolean;
}

Members

NameTypeRequirementDescription
valuestringRequiredValue produced when this item is selected.
disabledbooleanOptionalDisables this item.