Files
starface-outlook-sync-addin/node_modules/@fluentui/react/lib-amd/components/ComboBox/ComboBox.d.ts
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

27 lines
996 B
TypeScript

import * as React from 'react';
import type { IComboBoxProps } from './ComboBox.types';
export interface IComboBoxState {
/** The open state */
isOpen?: boolean;
/** The focused state of the combo box */
focusState?: 'none' | 'focused' | 'focusing';
/**
* When taking input, this will store the index that the options input matches
* (-1 if no input or match)
*/
currentPendingValueValidIndex: number;
/**
* Stores the hovered over value in the dropdown
* (used for styling the options without updating the input)
*/
currentPendingValueValidIndexOnHover: number;
/** When taking input, this will store the actual text that is being entered */
currentPendingValue?: string;
/**
* The id of the current focused combo item, otherwise the id of the currently selected element,
* null otherwise
*/
ariaActiveDescendantValue?: string;
}
export declare const ComboBox: React.FunctionComponent<IComboBoxProps>;