mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
Bump Storybook dependencies to v3
This commit is contained in:
parent
802e1d6378
commit
281b32aa60
@ -1,2 +1,2 @@
|
||||
import "@kadira/storybook/addons";
|
||||
import "@storybook/addons";
|
||||
import "../src/register";
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { configure, addDecorator } from '@kadira/storybook';
|
||||
import { configure, addDecorator } from '@storybook/react';
|
||||
|
||||
addDecorator((story) => (<div style={{padding: 20}}>{story()}</div>));
|
||||
|
||||
|
@ -21,7 +21,6 @@ Then create a file called `addons.js` in your storybook config.
|
||||
Add following content to it:
|
||||
|
||||
```js
|
||||
import '@kadira/storybook/addons';
|
||||
import 'react-storybook-addon-backgrounds/register';
|
||||
```
|
||||
|
||||
@ -29,7 +28,7 @@ Then write your stories like this:
|
||||
|
||||
```js
|
||||
import React from 'react';
|
||||
import { storiesOf } from "@kadira/storybook";
|
||||
import { storiesOf } from "@storybook/react";
|
||||
import backgrounds from "react-storybook-addon-backgrounds";
|
||||
|
||||
storiesOf("Button", module)
|
||||
|
@ -32,7 +32,7 @@ const defaultBackground: BackgroundDetail = {
|
||||
};
|
||||
|
||||
const __html = `
|
||||
import { storiesOf } from "@kadira/storybook";
|
||||
import { storiesOf } from "@storybook/react";
|
||||
import backgrounds from "react-storybook-addon-backgrounds";
|
||||
|
||||
storiesOf("First Component", module)
|
||||
|
@ -1,6 +1,6 @@
|
||||
import * as React from "react"; // tslint:disable-line
|
||||
import { storiesOf } from "@kadira/storybook";
|
||||
import centered from "@kadira/react-storybook-decorator-centered";
|
||||
import { storiesOf } from "@storybook/react";
|
||||
import centered from "@storybook/addon-centered";
|
||||
|
||||
import backgrounds from "./index.tsx";
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
import * as React from "react";
|
||||
import addons from "@kadira/storybook-addons";
|
||||
import addons from "@storybook/addons";
|
||||
import assign = require("object-assign"); // tslint:disable-line
|
||||
|
||||
const style = {
|
||||
|
@ -1,5 +1,5 @@
|
||||
import * as React from "react"; // tslint:disable-line
|
||||
import addons from "@kadira/storybook-addons";
|
||||
import addons from "@storybook/addons";
|
||||
|
||||
import BackgroundPanel from "./BackgroundPanel";
|
||||
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "react-storybook-addon-backgrounds",
|
||||
"version": "0.0.7",
|
||||
"version": "0.1.0",
|
||||
"description": "A react storybook addon to show different backgrounds for your preview",
|
||||
"main": "dist/index.js",
|
||||
"typings": "dist/index.d.ts",
|
||||
@ -21,7 +21,7 @@
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": "^0.14.7 || ^15.0.0",
|
||||
"@kadira/storybook-addons": "^v1.3.1"
|
||||
"@storybook/addons": "^v3.1.6"
|
||||
},
|
||||
"keywords": [
|
||||
"react-storybook",
|
||||
@ -34,8 +34,8 @@
|
||||
},
|
||||
"homepage": "https://github.com/NewSpring/react-storybook-addon-backgrounds#readme",
|
||||
"devDependencies": {
|
||||
"@kadira/react-storybook-decorator-centered": "^1.0.0",
|
||||
"@kadira/storybook": "^2.5.1",
|
||||
"@storybook/addon-centered": "^v3.1.2",
|
||||
"@storybook/react": "^v3.1.7",
|
||||
"babel-core": "^6.4.5",
|
||||
"babel-loader": "^6.2.1",
|
||||
"babel-plugin-add-module-exports": "^0.2.1",
|
||||
|
6
addons/background/shims.d.ts
vendored
6
addons/background/shims.d.ts
vendored
@ -1,5 +1,5 @@
|
||||
|
||||
declare module "@kadira/storybook-addons" {
|
||||
declare module "@storybook/addons" {
|
||||
|
||||
interface PanelOpts {
|
||||
title: string;
|
||||
@ -16,7 +16,7 @@ declare module "@kadira/storybook-addons" {
|
||||
export default addon;
|
||||
}
|
||||
|
||||
declare module "@kadira/storybook" {
|
||||
declare module "@storybook/react" {
|
||||
interface Story {
|
||||
add(storyName: string, callback: Function): Story;
|
||||
addDecorator(decorator: any): Story
|
||||
@ -27,6 +27,6 @@ declare module "@kadira/storybook" {
|
||||
|
||||
}
|
||||
|
||||
declare module "@kadira/react-storybook-decorator-centered" {
|
||||
declare module "@storybook/addon-centered" {
|
||||
export default function(): any;
|
||||
}
|
||||
|
@ -33,7 +33,7 @@ const defaultBackground: BackgroundDetail = {
|
||||
};
|
||||
|
||||
const __html = `
|
||||
import { storiesOf } from "@kadira/storybook";
|
||||
import { storiesOf } from "@storybook/react";
|
||||
import backgrounds from "react-storybook-addon-backgrounds";
|
||||
|
||||
storiesOf("First Component", module)
|
||||
|
@ -1,6 +1,6 @@
|
||||
import * as React from "react"; // tslint:disable-line
|
||||
import { storiesOf } from "@kadira/storybook";
|
||||
import centered from "@kadira/react-storybook-decorator-centered";
|
||||
import { storiesOf } from "@storybook/react";
|
||||
import centered from "@storybook/addon-centered";
|
||||
|
||||
import backgrounds from "./index.tsx";
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
import * as React from "react";
|
||||
import addons from "@kadira/storybook-addons";
|
||||
import addons from "@storybook/addons";
|
||||
import assign = require("object-assign"); // tslint:disable-line
|
||||
|
||||
const style = {
|
||||
|
@ -1,5 +1,5 @@
|
||||
import * as React from "react"; // tslint:disable-line
|
||||
import addons from "@kadira/storybook-addons";
|
||||
import addons from "@storybook/addons";
|
||||
|
||||
import BackgroundPanel from "./BackgroundPanel";
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user