1// We need to centralize the zIndex definitions as they work 2// like global values in the browser. 3export const zIndex = { 4 navbarFixed: 1000, 5 sidemenu: 1020, 6 dropdown: 1030, 7 typeahead: 1030, 8 tooltip: 1040, 9 modalBackdrop: 1050, 10 modal: 1060, 11 portal: 1061, 12}; 13 14/** @beta */ 15export type ThemeZIndices = typeof zIndex; 16