f0bc9fcb43
Move front components from twenty-shared to twenty-sdk
23 lines
306 B
TypeScript
23 lines
306 B
TypeScript
export const COMMON_HTML_EVENTS = [
|
|
'click',
|
|
'dblclick',
|
|
'mousedown',
|
|
'mouseup',
|
|
'mouseover',
|
|
'mouseout',
|
|
'mouseenter',
|
|
'mouseleave',
|
|
'keydown',
|
|
'keyup',
|
|
'keypress',
|
|
'focus',
|
|
'blur',
|
|
'change',
|
|
'input',
|
|
'submit',
|
|
'scroll',
|
|
'wheel',
|
|
'contextmenu',
|
|
'drag',
|
|
] as const;
|