mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 00:41:05 +08:00
Merge pull request #7788 from storybookjs/6803-unwrap-chromatic-stories
Addon-docs: Unwrap doc blocks stories
This commit is contained in:
commit
1cf3f3e1a8
@ -1,11 +1,9 @@
|
||||
import React from 'react';
|
||||
import { ColorItem, ColorPalette } from './ColorPalette';
|
||||
import { DocsPageWrapper } from './DocsPage';
|
||||
|
||||
export default {
|
||||
title: 'Docs|ColorPalette',
|
||||
component: ColorPalette,
|
||||
decorators: [getStory => <DocsPageWrapper>{getStory()}</DocsPageWrapper>],
|
||||
};
|
||||
|
||||
export const defaultStyle = () => (
|
||||
|
@ -1,13 +1,11 @@
|
||||
import React from 'react';
|
||||
import { Description } from './Description';
|
||||
|
||||
import { DocsPageWrapper } from './DocsPage';
|
||||
import markdownCaption from './DocsPageExampleCaption.md';
|
||||
|
||||
export default {
|
||||
title: 'Docs|Description',
|
||||
component: Description,
|
||||
decorators: [getStory => <DocsPageWrapper>{getStory()}</DocsPageWrapper>],
|
||||
};
|
||||
|
||||
const textCaption = `That was Wintermute, manipulating the lock the way it had manipulated the drone micro and the amplified breathing of the room where Case waited. The semiotics of the bright void beyond the chain link. The tug Marcus Garvey, a steel drum nine meters long and two in diameter, creaked and shuddered as Maelcum punched for a California gambling cartel, then as a paid killer in the dark, curled in his capsule in some coffin hotel, his hands clawed into the nearest door and watched the other passengers as he rode. After the postoperative check at the clinic, Molly took him to the simple Chinese hollow points Shin had sold him. Still it was a handgun and nine rounds of ammunition, and as he made his way down Shiga from the missionaries, the train reached Case’s station. Now this quiet courtyard, Sunday afternoon, this girl with a random collection of European furniture, as though Deane had once intended to use the place as his home. Case felt the edge of the Flatline as a construct, a hardwired ROM cassette replicating a dead man’s skills, obsessions, kneejerk responses. They were dropping, losing altitude in a canyon of rainbow foliage, a lurid communal mural that completely covered the hull of the console in faded pinks and yellows.`;
|
||||
|
@ -1,11 +1,9 @@
|
||||
import React from 'react';
|
||||
import { EmptyBlock } from './EmptyBlock';
|
||||
import { DocsPageWrapper } from './DocsPage';
|
||||
|
||||
export default {
|
||||
title: 'Docs|EmptyBlock',
|
||||
component: EmptyBlock,
|
||||
decorators: [getStory => <DocsPageWrapper>{getStory()}</DocsPageWrapper>],
|
||||
};
|
||||
|
||||
export const error = () => <EmptyBlock>Generic error message</EmptyBlock>;
|
||||
|
@ -1,13 +1,11 @@
|
||||
import React from 'react';
|
||||
import { IconItem, IconGallery } from './IconGallery';
|
||||
|
||||
import { DocsPageWrapper } from './DocsPage';
|
||||
import { Icons as ExampleIcon } from '../icon/icon';
|
||||
|
||||
export default {
|
||||
title: 'Docs|IconGallery',
|
||||
component: IconGallery,
|
||||
decorators: [getStory => <DocsPageWrapper>{getStory()}</DocsPageWrapper>],
|
||||
};
|
||||
|
||||
export const defaultStyle = () => (
|
||||
|
@ -1,16 +1,14 @@
|
||||
import React from 'react';
|
||||
|
||||
import { Preview } from './Preview';
|
||||
|
||||
import { Story } from './Story';
|
||||
import { Button } from '../Button/Button';
|
||||
|
||||
import { DocsPageWrapper } from './DocsPage';
|
||||
import * as sourceStories from './Source.stories';
|
||||
|
||||
export default {
|
||||
title: 'Docs|Preview',
|
||||
component: Preview,
|
||||
decorators: [getStory => <DocsPageWrapper>{getStory()}</DocsPageWrapper>],
|
||||
};
|
||||
|
||||
export const codeCollapsed = () => (
|
||||
|
@ -1,7 +1,7 @@
|
||||
import React from 'react';
|
||||
import { PropRow } from './PropRow';
|
||||
import { Table } from './PropsTable';
|
||||
import { DocsPageWrapper } from '../DocsPage';
|
||||
import { ResetWrapper } from '../../typography/DocumentFormatting';
|
||||
|
||||
export default {
|
||||
component: PropRow,
|
||||
@ -9,11 +9,11 @@ export default {
|
||||
excludeStories: /.*Def$/,
|
||||
decorators: [
|
||||
getStory => (
|
||||
<DocsPageWrapper>
|
||||
<ResetWrapper>
|
||||
<Table>
|
||||
<tbody>{getStory()}</tbody>
|
||||
</Table>
|
||||
</DocsPageWrapper>
|
||||
</ResetWrapper>
|
||||
),
|
||||
],
|
||||
};
|
||||
|
@ -1,12 +1,10 @@
|
||||
import React from 'react';
|
||||
import { PropsTable, PropsTableError } from './PropsTable';
|
||||
import { stringDef, numberDef } from './PropRow.stories';
|
||||
import { DocsPageWrapper } from '../DocsPage';
|
||||
|
||||
export default {
|
||||
component: PropsTable,
|
||||
title: 'Docs|PropTable',
|
||||
decorators: [getStory => <DocsPageWrapper>{getStory()}</DocsPageWrapper>],
|
||||
};
|
||||
|
||||
export const normal = () => <PropsTable rows={[stringDef, numberDef]} />;
|
||||
|
@ -1,11 +1,9 @@
|
||||
import React from 'react';
|
||||
import { Source, SourceError } from './Source';
|
||||
import { DocsPageWrapper } from './DocsPage';
|
||||
|
||||
export default {
|
||||
title: 'Docs|Source',
|
||||
component: Source,
|
||||
decorators: [getStory => <DocsPageWrapper>{getStory()}</DocsPageWrapper>],
|
||||
};
|
||||
|
||||
const jsxCode = `
|
||||
|
@ -1,12 +1,10 @@
|
||||
import React from 'react';
|
||||
import { Story, StoryError } from './Story';
|
||||
import { Button } from '../Button/Button';
|
||||
import { DocsPageWrapper } from './DocsPage';
|
||||
|
||||
export default {
|
||||
title: 'Docs|Story',
|
||||
component: Story,
|
||||
decorators: [getStory => <DocsPageWrapper>{getStory()}</DocsPageWrapper>],
|
||||
};
|
||||
|
||||
const buttonFn = () => <Button secondary>Inline story</Button>;
|
||||
|
@ -1,11 +1,9 @@
|
||||
import React from 'react';
|
||||
import { Typeset } from './Typeset';
|
||||
import { DocsPageWrapper } from './DocsPage';
|
||||
|
||||
export default {
|
||||
title: 'Docs|Typeset',
|
||||
component: Typeset,
|
||||
decorators: [getStory => <DocsPageWrapper>{getStory()}</DocsPageWrapper>],
|
||||
};
|
||||
|
||||
const fontSizes = [12, 14, 16, 20, 24, 32, 40, 48];
|
||||
|
Loading…
x
Reference in New Issue
Block a user