@esri/calcite-components
Version:
Web Components for Esri's Calcite Design System.
22 lines (21 loc) • 599 B
TypeScript
import { EventEmitter, VNode } from "../../stencil-public-runtime";
export declare class CalciteHandle {
/**
* @internal - stores the activated state of the drag handle.
*/
activated: boolean;
/**
* Value for the button title attribute
*/
textTitle: string;
el: HTMLCalciteHandleElement;
handleButton: HTMLElement;
/**
* Emitted when the the handle is activated and the up or down arrow key is pressed.
*/
calciteHandleNudge: EventEmitter;
setFocus(): Promise<void>;
handleKeyDown: (event: KeyboardEvent) => void;
handleBlur: () => void;
render(): VNode;
}