@gitlab/ui
Version:
GitLab UI Components
23 lines (20 loc) • 452 B
JavaScript
export const POPPER_CONFIG = {
modifiers: [
{
name: 'offset',
options: {
offset: [0, 4],
},
},
],
};
// base dropdown events
export const GL_DROPDOWN_SHOWN = 'shown';
export const GL_DROPDOWN_HIDDEN = 'hidden';
// KEY Codes
export const HOME = 'Home';
export const END = 'End';
export const ARROW_UP = 'ArrowUp';
export const ARROW_DOWN = 'ArrowDown';
export const ENTER = 'Enter';
export const SPACE = 'Space';