mirror of https://github.com/status-im/consul.git
17438020f1
* ui: Remove all vestiges of role=tabpanel * Switch out tablist role for a label, default to Secondary * Move healthcheckout-output headers to h2, ideally these would be outside the component * Add aria-label for empty button * Fix up non-unique ids in topology component * Temporarily fixup h2 in KV > LockSession * Fixup dl with no dt * h3 > h2 * Fix up page objects that were reliant on ids |
||
---|---|---|
.. | ||
README.stories.mdx | ||
index.hbs | ||
index.scss | ||
layout.scss | ||
skin.scss |
README.stories.mdx
import { Meta, Story, Canvas } from '@storybook/addon-docs/blocks'; import { hbs } from 'ember-cli-htmlbars'; <Meta title="Components/Notice" component="Notice" /> # Notice <Canvas> <Story name="Basic" argTypes={{ type: { defaultValue: 'success', control: { type: 'select', options: [ 'success', 'warning', 'info', 'highlight', ] } } }} >{(args) => ({ template: hbs`<Notice @type={{type}} as |notice|> <notice.Header> <h3>Header</h3> </notice.Header> <notice.Body> <p> Body </p> </notice.Body> <notice.Footer> <p> Footer </p> </notice.Footer> </Notice>`, context: args })} </Story> </Canvas>