UNPKG

331 BJavaScriptView Raw
1export const ListActionTypes = {
2 blur: 'list:blur',
3 focus: 'list:focus',
4 keyDown: 'list:keyDown',
5 itemClick: 'list:itemClick',
6 itemHover: 'list:itemHover',
7 itemsChange: 'list:itemsChange',
8 textNavigation: 'list:textNavigation'
9};
10
11/**
12 * A union of all standard actions that can be dispatched to the list reducer.
13 */
\No newline at end of file