UNPKG

aria-live-storybook-addon

Version:

Observe and log aria-live region changes in the addon panel

16 lines (15 loc) 442 B
import { addons, types } from "@storybook/addons"; import { ADDON_ID, PANEL_ID } from "../constants"; import { Panel } from "../Panel"; // Register the addon addons.register(ADDON_ID, function () { // Register the panel addons.add(PANEL_ID, { type: types.PANEL, title: "Aria Live Regions", match: function match(_ref) { var viewMode = _ref.viewMode; return viewMode === "story"; }, render: Panel }); });