UNPKG

@momentum-ui/react-collaboration

Version:

Cisco Momentum UI Framework for React Collaboration Applications

26 lines (25 loc) 766 B
import { IconScale } from '../Icon'; import { SearchFieldHeight } from './SearchInput.types'; declare const CLASS_PREFIX = "md-search-input"; declare const HEIGHTS: readonly [28, 32]; declare const ARIA_ROLES: { COMBOBOX: string; }; declare const WARNINGS: { ISCOMBOBOX_1_ISEXPANDED_0: string; ISCOMBOBOX_0_CONTROLS_1: string; ISCOMBOBOX_0_ISEXPANDED_1: string; }; declare const ICON_HEIGHT_MAPPING: Record<SearchFieldHeight, IconScale>; declare const DEFAULTS: { readonly HEIGHT: 32; readonly ISCOMBOBOX: false; }; declare const STYLE: { wrapper: string; container: string; search: string; searching: string; clear: string; }; export { CLASS_PREFIX, ARIA_ROLES, WARNINGS, HEIGHTS, ICON_HEIGHT_MAPPING, DEFAULTS, STYLE };