@esri/calcite-components
Version:
Web Components for Esri's Calcite Design System.
15 lines (14 loc) • 512 B
TypeScript
import { VNode } from "../../stencil-public-runtime";
import { ComboboxChildElement } from "../calcite-combobox/interfaces";
import { Scale } from "../interfaces";
export declare class CalciteComboboxItemGroup {
/** Parent and grandparent combobox items, this is set internally for use from combobox */
ancestors: ComboboxChildElement[];
/** Title of the group */
label: string;
connectedCallback(): void;
el: HTMLCalciteComboboxItemGroupElement;
guid: string;
scale: Scale;
render(): VNode;
}