diff --git a/addons/background/docs/BackgroundPanel.tsx b/addons/background/docs/BackgroundPanel.tsx index 795ccfcd534..daa8ac7584d 100644 --- a/addons/background/docs/BackgroundPanel.tsx +++ b/addons/background/docs/BackgroundPanel.tsx @@ -15,8 +15,15 @@ export interface BackgroundDetail { value: string; }; +export interface StoryBookAPI { + getQueryParam(param: string): string; + setQueryParams(params: { [key: string]: string } ): void; + selectStory(story: string, storyOf: string): void; +} + export interface BackgroundPanelProps { channel: NodeJS.EventEmitter; + api: StoryBookAPI; } const defaultBackground: BackgroundDetail = { @@ -37,48 +44,62 @@ storiesOf("First Component", module) ; `.trim(); +const Instructions = () => ( +
Please add the background decorator definition to your story. + The background decorate accepts an array of items, which should include a + name for your color (preferably the css class name) and the corresponding color / image value.
+Below is an example of how to add the background decorator to your story definition.
+
+ Please add the background decorator definition to your story. - The background decorate accepts an array of items, which should include a - name for your color (preferably the css class name) and the corresponding color / image value.
-Below is an example of how to add the background decorator to your story definition.
-
-