@heycar-uikit/core
Version:
The React UI library from HeyCar
51 lines (50 loc) • 1.34 kB
TypeScript
import { LangOption } from "../Header.types-caa69f60";
declare const DEFAULT_LOCALE: {
closeSearchLabel: string;
logoLabel: string;
langListHeading: string;
burgerMenuButtonLabel: string;
favoritesCountLabel: string;
showAllLabel: string;
spaceBarNotification: string;
subMenuLabel: string;
auxTelLabel: string;
auxEmailLabel: string;
auxAppHeading: string;
};
declare const headerClickTracking: {
action: string;
category: string;
type: string;
label: string;
};
declare const LANG_OPTIONS: LangOption[];
declare const SUBNAV_CONFIG: {
quarter: {
className: string;
colWidth: number;
maxItem: number;
maxCaptionItem: number;
};
third: {
className: string;
colWidth: number;
maxItem: number;
maxCaptionItem: number;
};
half: {
className: string;
colWidth: number;
maxItem: number;
maxCaptionItem: number;
};
full: {
className: string;
colWidth: number;
maxItem: number;
maxCaptionItem: number;
};
};
declare const BURGER_MENU_SUBNAV_MAX_ITEMS = 5;
declare const MAX_FAVES_DISPLAY_NO = 99;
export { BURGER_MENU_SUBNAV_MAX_ITEMS, DEFAULT_LOCALE, headerClickTracking, LANG_OPTIONS, MAX_FAVES_DISPLAY_NO, SUBNAV_CONFIG };