59 lines
2.4 KiB
TypeScript
59 lines
2.4 KiB
TypeScript
export interface AutocompleteClasses {
|
|
/** Styles applied to the root element. */
|
|
root: string;
|
|
/** Styles applied to the root element if `fullWidth={true}`. */
|
|
fullWidth: string;
|
|
/** State class applied to the root element if the listbox is displayed. */
|
|
expanded: string;
|
|
/** State class applied to the root element if focused. */
|
|
focused: string;
|
|
/** Styles applied to the option elements if they are keyboard focused. */
|
|
focusVisible: string;
|
|
/** Styles applied to the tag elements, for example the chips. */
|
|
tag: string;
|
|
/** Styles applied to the tag elements, for example the chips if `size="small"`. */
|
|
tagSizeSmall: string;
|
|
/** Styles applied to the tag elements, for example the chips if `size="medium"`. */
|
|
tagSizeMedium: string;
|
|
/** Styles applied when the popup icon is rendered. */
|
|
hasPopupIcon: string;
|
|
/** Styles applied when the clear icon is rendered. */
|
|
hasClearIcon: string;
|
|
/** Styles applied to the Input element. */
|
|
inputRoot: string;
|
|
/** Styles applied to the input element. */
|
|
input: string;
|
|
/** Styles applied to the input element if the input is focused. */
|
|
inputFocused: string;
|
|
/** Styles applied to the endAdornment element. */
|
|
endAdornment: string;
|
|
/** Styles applied to the clear indicator. */
|
|
clearIndicator: string;
|
|
/** Styles applied to the popup indicator. */
|
|
popupIndicator: string;
|
|
/** Styles applied to the popup indicator if the popup is open. */
|
|
popupIndicatorOpen: string;
|
|
/** Styles applied to the popper element. */
|
|
popper: string;
|
|
/** Styles applied to the popper element if `disablePortal={true}`. */
|
|
popperDisablePortal: string;
|
|
/** Styles applied to the Paper component. */
|
|
paper: string;
|
|
/** Styles applied to the listbox component. */
|
|
listbox: string;
|
|
/** Styles applied to the loading wrapper. */
|
|
loading: string;
|
|
/** Styles applied to the no option wrapper. */
|
|
noOptions: string;
|
|
/** Styles applied to the option elements. */
|
|
option: string;
|
|
/** Styles applied to the group's label elements. */
|
|
groupLabel: string;
|
|
/** Styles applied to the group's ul elements. */
|
|
groupUl: string;
|
|
}
|
|
export type AutocompleteClassKey = keyof AutocompleteClasses;
|
|
export declare function getAutocompleteUtilityClass(slot: string): string;
|
|
declare const autocompleteClasses: AutocompleteClasses;
|
|
export default autocompleteClasses;
|