@smkit/ui
Version:
UI Kit of SberMarketing
31 lines (30 loc) • 653 B
JavaScript
export const DEFAULT_TOOLTIP_DELAY = 500;
export const DEFAULT_CLOSE_TOOLTIP_DELAY = 100;
export const CURSOR_TOP_MARGIN = 20;
export const GAP = 15;
export const ARROW_WIDTH = 20;
export const ARROW_HEIGHT = 10;
export const POSITION2ARROW = {
'top': 'bottom',
'right': 'left',
'bottom': 'top',
'left': 'right',
};
export const ARROW_STYLES = {
'top': {
container: '',
arrow: '',
},
'right': {
container: 'rotate-90',
arrow: '',
},
'bottom': {
container: '',
arrow: 'rotate-[180deg]',
},
'left': {
container: '-rotate-90',
arrow: '',
},
};