Plugins

Covers Engine Plugin SDK 2.0.0 · Interface Plugin SDK 0.2.0

SelectValue

Selected value display.

Import

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

Declaration

export const SelectValue: HostComponent<SelectValueProps>;

SelectValueProps

Props accepted by the selected-value display.

export interface SelectValueProps extends HostComponentProps {
    /** Content shown while no value is selected. */
    placeholder?: HostNode;
}
PropTypeRequirementDescription
placeholderHostNodeOptionalContent shown while no value is selected.