UNPKG

@esri/calcite-components

Version:

Web Components for Esri's Calcite Design System.

25 lines (24 loc) 792 B
import { EventEmitter, VNode } from "../../stencil-public-runtime"; export declare class SegmentedControlItem { el: HTMLCalciteSegmentedControlItemElement; /** When `true`, the component is checked. */ checked: boolean; protected handleCheckedChange(): void; /** When `true`, the icon will be flipped when the element direction is right-to-left (`"rtl"`). */ iconFlipRtl: boolean; /** Specifies an icon to display at the start of the component. */ iconStart: string; /** Specifies an icon to display at the end of the component. */ iconEnd: string; /** * The component's value. */ value: any | null; render(): VNode; /** * Fires when the item has been selected. * * @internal */ calciteInternalSegmentedControlItemChange: EventEmitter<void>; }