UNPKG

@esri/calcite-components

Version:

Web Components for Esri's Calcite Design System.

21 lines (20 loc) 576 B
/// <reference path="../../index.d.ts" /> import type { PublicLitElement as LitElement } from "@arcgis/lumina"; export abstract class Option extends LitElement { /** * When `true`, interaction is prevented and the component is displayed with lower opacity. * * @default false */ accessor disabled: boolean; /** Specifies an accessible label for the component. */ accessor label: string; /** * When `true`, the component is selected. * * @default false */ accessor selected: boolean; /** The component's value. */ accessor value: any; }