UNPKG

@talend/react-components

Version:
13 lines 397 B
/** * Focus management on time picker. * - try to focus on the selected item * - try to focus on the 1st item */ export default function focusOnTime(containerRef) { let target = containerRef.querySelector('button[aria-current="time"]'); if (!target) { target = containerRef.querySelector('button[role="listitem"]'); } target.focus(); } //# sourceMappingURL=timePickerGesture.js.map