UNPKG

@skbkontur/storybook-addon-live-examples

Version:

Storybook live examples plugin

13 lines 310 B
export var CUSTOM_EVENTS = { VIEW_CHANGE: 'view-change', COPY: 'copy', SHOW_SOURCE_CODE: 'show-source-code', SHARE: 'share', REFRESH: 'refresh' }; export function dispatchCustomEvent(eventName, data) { document.dispatchEvent(new CustomEvent(eventName, { detail: data, bubbles: true })); }