UNPKG

490 BJavaScriptView Raw
1export const ADDON_ID = 'storybook/a11y';
2export const PANEL_ID = `${ADDON_ID}/panel`;
3export const PARAM_KEY = `a11y`;
4export const HIGHLIGHT_STYLE_ID = 'a11yHighlight';
5const RESULT = `${ADDON_ID}/result`;
6const REQUEST = `${ADDON_ID}/request`;
7const RUNNING = `${ADDON_ID}/running`;
8const ERROR = `${ADDON_ID}/error`;
9const MANUAL = `${ADDON_ID}/manual`;
10const HIGHLIGHT = `${ADDON_ID}/highlight`;
11export const EVENTS = {
12 RESULT,
13 REQUEST,
14 RUNNING,
15 ERROR,
16 MANUAL,
17 HIGHLIGHT
18};
\No newline at end of file