@esri/calcite-components
Version:
Web Components for Esri's Calcite Design System.
20 lines (18 loc) • 545 B
TypeScript
/// <reference types="../../index.d.ts" />
import { PropertyValues } from 'lit';
import { PublicLitElement as LitElement, JsxNode, TargetedEvent } from '@arcgis/lumina';
/** @slot - A slot for adding `calcite-option`s. */
export declare class OptionGroup extends LitElement {
/**
* When `true`, interaction is prevented and the component is displayed with lower opacity.
*
* @default false
*/
disabled: boolean;
/**
* Accessible name for the component.
*
* @required
*/
label: string;
}