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

22 lines
863 B
TypeScript

import type { IComboBoxStyles, IComboBoxOptionStyles } from './ComboBox.types';
export interface IComboBoxClassNames {
container: string;
label: string;
root: string;
input: string;
errorMessage: string;
callout: string;
optionsContainer: string;
header: string;
divider: string;
optionsContainerWrapper: string;
screenReaderText: string;
}
export interface IComboBoxOptionClassNames {
optionText: string;
root: string;
optionTextWrapper: string;
}
export declare const getClassNames: (styles: Partial<IComboBoxStyles>, className: string, isOpen: boolean, disabled: boolean, required: boolean, focused: boolean, allowFreeForm: boolean, hasErrorMessage: boolean) => IComboBoxClassNames;
export declare const getComboBoxOptionClassNames: (styles: Partial<IComboBoxOptionStyles>) => IComboBoxOptionClassNames;