12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- import React from 'react';
- import {storiesOf} from '@storybook/react';
- import {withInfo} from '@storybook/addon-info';
- import Button from 'app/components/button';
- import {Panel, PanelHeader, PanelBody, PanelItem} from 'app/components/panels';
- import Field from 'app/views/settings/components/forms/field';
- storiesOf('UI|Panels', module)
- .add(
- 'Basic Panel',
- withInfo({
- text: 'Basic Panel component used in most settings',
- propTablesExclude: [Button],
- })(() => (
- <Panel>
- <PanelHeader>Panel Header</PanelHeader>
- <PanelBody>
- <PanelItem>Panel Item</PanelItem>
- <PanelItem>Panel Item</PanelItem>
- <PanelItem>Panel Item</PanelItem>
- </PanelBody>
- </Panel>
- ))
- )
- .add(
- 'With Fields',
- withInfo({
- text: 'Non-connected form field item',
- propTablesExclude: [Panel, PanelBody, PanelItem],
- })(() => (
- <Panel>
- <PanelHeader>Panel Header</PanelHeader>
- <PanelBody>
- <Field label="Label" help="This is a helpful description for this form field">
- <Button priority="danger">Remove</Button>
- </Field>
- <Field
- label="Label"
- help="Control will fill up all available space, so wrap with a `<div>` to have it behave like an inline-block element."
- >
- <div>
- <Button priority="danger">Remove</Button>
- </div>
- </Field>
- </PanelBody>
- </Panel>
- ))
- );
|