From f3300115ad5ba6ae0279693b8bd6aef69c774c7a Mon Sep 17 00:00:00 2001 From: Hypnosphi Date: Tue, 8 May 2018 01:32:29 +0300 Subject: [PATCH 001/143] Generic addon-a11y decorator --- addons/a11y/html.js | 1 - addons/a11y/src/A11yManager.js | 14 ----- addons/a11y/src/components/WrapStory.js | 58 ------------------- addons/a11y/src/html.js | 35 ----------- addons/a11y/src/index.js | 39 +++++++++---- .../stories/addon-a11y.stories.js | 2 +- 6 files changed, 29 insertions(+), 120 deletions(-) delete mode 100644 addons/a11y/html.js delete mode 100644 addons/a11y/src/A11yManager.js delete mode 100644 addons/a11y/src/components/WrapStory.js delete mode 100644 addons/a11y/src/html.js diff --git a/addons/a11y/html.js b/addons/a11y/html.js deleted file mode 100644 index 4f7edc6bedb..00000000000 --- a/addons/a11y/html.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('./dist/html'); diff --git a/addons/a11y/src/A11yManager.js b/addons/a11y/src/A11yManager.js deleted file mode 100644 index fe48aaef666..00000000000 --- a/addons/a11y/src/A11yManager.js +++ /dev/null @@ -1,14 +0,0 @@ -import React from 'react'; - -import WrapStory from './components/WrapStory'; - -// Run all a11y checks inside -class A11yManager { - wrapStory(channel, storyFn, context, axeOptions) { - const props = { context, storyFn, channel, axeOptions }; - - return ; - } -} - -export default A11yManager; diff --git a/addons/a11y/src/components/WrapStory.js b/addons/a11y/src/components/WrapStory.js deleted file mode 100644 index b36e8c15c86..00000000000 --- a/addons/a11y/src/components/WrapStory.js +++ /dev/null @@ -1,58 +0,0 @@ -import { Component } from 'react'; -import { findDOMNode } from 'react-dom'; -import PropTypes from 'prop-types'; -import axe from 'axe-core'; -import { logger } from '@storybook/client-logger'; - -import { CHECK_EVENT_ID, RERUN_EVENT_ID } from '../shared'; - -class WrapStory extends Component { - static propTypes = { - context: PropTypes.shape({}), - storyFn: PropTypes.func, - channel: PropTypes.shape({}), - axeOptions: PropTypes.shape({}), - }; - static defaultProps = { - context: {}, - storyFn: () => {}, - channel: {}, - axeOptions: {}, - }; - - constructor(props) { - super(props); - this.runA11yCheck = this.runA11yCheck.bind(this); - } - - componentDidMount() { - const { channel } = this.props; - channel.on(RERUN_EVENT_ID, this.runA11yCheck); - this.runA11yCheck(); - } - - componentWillUnmount() { - const { channel } = this.props; - channel.removeListener(RERUN_EVENT_ID, this.runA11yCheck); - } - - /* eslint-disable react/no-find-dom-node */ - runA11yCheck() { - const { channel, axeOptions } = this.props; - const wrapper = findDOMNode(this); - - if (wrapper !== null) { - axe.reset(); - axe.configure(axeOptions); - axe.run(wrapper).then(results => channel.emit(CHECK_EVENT_ID, results), logger.error); - } - } - - render() { - const { storyFn, context } = this.props; - - return storyFn(context); - } -} - -export default WrapStory; diff --git a/addons/a11y/src/html.js b/addons/a11y/src/html.js deleted file mode 100644 index f41765366cc..00000000000 --- a/addons/a11y/src/html.js +++ /dev/null @@ -1,35 +0,0 @@ -import { document, setTimeout } from 'global'; -import axe from 'axe-core'; -import addons from '@storybook/addons'; -import Events from '@storybook/core-events'; -import { logger } from '@storybook/client-logger'; - -import { CHECK_EVENT_ID, RERUN_EVENT_ID } from './shared'; - -let axeOptions = {}; - -export const configureA11y = (options = {}) => { - axeOptions = options; -}; - -const runA11yCheck = () => { - const channel = addons.getChannel(); - const wrapper = document.getElementById('root'); - - axe.reset(); - axe.configure(axeOptions); - axe.run(wrapper).then(results => channel.emit(CHECK_EVENT_ID, results), logger.error); -}; - -const a11ySubscription = () => { - const channel = addons.getChannel(); - channel.on(RERUN_EVENT_ID, runA11yCheck); - return () => channel.removeListener(RERUN_EVENT_ID, runA11yCheck); -}; - -export const checkA11y = story => { - addons.getChannel().emit(Events.REGISTER_SUBSCRIPTION, a11ySubscription); - // We need to wait for rendering - setTimeout(runA11yCheck, 0); - return story(); -}; diff --git a/addons/a11y/src/index.js b/addons/a11y/src/index.js index b8e4f0ba447..f41765366cc 100644 --- a/addons/a11y/src/index.js +++ b/addons/a11y/src/index.js @@ -1,18 +1,35 @@ +import { document, setTimeout } from 'global'; +import axe from 'axe-core'; import addons from '@storybook/addons'; +import Events from '@storybook/core-events'; +import { logger } from '@storybook/client-logger'; -import A11yManager from './A11yManager'; -import * as shared from './shared'; +import { CHECK_EVENT_ID, RERUN_EVENT_ID } from './shared'; -const manager = new A11yManager(); let axeOptions = {}; -function checkA11y(storyFn, context) { - const channel = addons.getChannel(); - return manager.wrapStory(channel, storyFn, context, axeOptions); -} - -function configureA11y(options = {}) { +export const configureA11y = (options = {}) => { axeOptions = options; -} +}; -export { checkA11y, shared, configureA11y }; +const runA11yCheck = () => { + const channel = addons.getChannel(); + const wrapper = document.getElementById('root'); + + axe.reset(); + axe.configure(axeOptions); + axe.run(wrapper).then(results => channel.emit(CHECK_EVENT_ID, results), logger.error); +}; + +const a11ySubscription = () => { + const channel = addons.getChannel(); + channel.on(RERUN_EVENT_ID, runA11yCheck); + return () => channel.removeListener(RERUN_EVENT_ID, runA11yCheck); +}; + +export const checkA11y = story => { + addons.getChannel().emit(Events.REGISTER_SUBSCRIPTION, a11ySubscription); + // We need to wait for rendering + setTimeout(runA11yCheck, 0); + return story(); +}; diff --git a/examples/html-kitchen-sink/stories/addon-a11y.stories.js b/examples/html-kitchen-sink/stories/addon-a11y.stories.js index 7341d03e8a6..96e90a23ae1 100644 --- a/examples/html-kitchen-sink/stories/addon-a11y.stories.js +++ b/examples/html-kitchen-sink/stories/addon-a11y.stories.js @@ -2,7 +2,7 @@ import { document, setTimeout } from 'global'; import { storiesOf } from '@storybook/html'; import { setOptions } from '@storybook/addon-options'; -import { checkA11y } from '@storybook/addon-a11y/html'; +import { checkA11y } from '@storybook/addon-a11y'; const text = 'Testing the a11y addon'; From 6f78c1261532f648d06410129072c53654ec9766 Mon Sep 17 00:00:00 2001 From: Hypnosphi Date: Tue, 8 May 2018 02:12:52 +0300 Subject: [PATCH 002/143] Generic addon-backgrounds decorator --- ADDONS_SUPPORT.md | 4 +- addons/backgrounds/html.js | 2 +- addons/backgrounds/mithril.js | 2 +- addons/backgrounds/package.json | 2 +- addons/backgrounds/src/__tests__/index.js | 64 -------------------- addons/backgrounds/src/__tests__/vue.js | 44 -------------- addons/backgrounds/src/deprecated.js | 8 +++ addons/backgrounds/src/html.js | 17 ------ addons/backgrounds/src/index.js | 72 ++++------------------- addons/backgrounds/src/mithril.js | 41 ------------- addons/backgrounds/src/vue.js | 30 ---------- addons/backgrounds/vue.js | 2 +- 12 files changed, 26 insertions(+), 262 deletions(-) delete mode 100644 addons/backgrounds/src/__tests__/index.js delete mode 100644 addons/backgrounds/src/__tests__/vue.js create mode 100644 addons/backgrounds/src/deprecated.js delete mode 100644 addons/backgrounds/src/html.js delete mode 100644 addons/backgrounds/src/mithril.js delete mode 100644 addons/backgrounds/src/vue.js diff --git a/ADDONS_SUPPORT.md b/ADDONS_SUPPORT.md index 74caad61836..86aba7bb261 100644 --- a/ADDONS_SUPPORT.md +++ b/ADDONS_SUPPORT.md @@ -2,9 +2,9 @@ | |[React](app/react)|[React Native](app/react-native)|[Vue](app/vue)|[Angular](app/angular)| [Polymer](app/polymer)| [Mithril](app/mithril)| [HTML](app/html)| [Marko](app/marko)| | ----------- |:-------:|:-------:|:-------:|:-------:|:-------:|:-------:|:-------:| -|[a11y](addons/a11y) |+| | | | | |+| | +|[a11y](addons/a11y) |+|+|+|+|+|+|+|+| |[actions](addons/actions) |+|+|+|+|+|+|+|+| -|[backgrounds](addons/backgrounds) |+| | | | |+|+| | +|[backgrounds](addons/backgrounds) |+|+|+|+|+|+|+|+| |[centered](addons/centered) |+| |+| | |+|+| | |[events](addons/events) |+| | | | | |+| | |[graphql](addons/graphql) |+| | | | | | | | diff --git a/addons/backgrounds/html.js b/addons/backgrounds/html.js index 4f7edc6bedb..c22c26b6732 100644 --- a/addons/backgrounds/html.js +++ b/addons/backgrounds/html.js @@ -1 +1 @@ -module.exports = require('./dist/html'); +module.exports = require('./dist/deprecated'); diff --git a/addons/backgrounds/mithril.js b/addons/backgrounds/mithril.js index 884a541476e..c22c26b6732 100644 --- a/addons/backgrounds/mithril.js +++ b/addons/backgrounds/mithril.js @@ -1 +1 @@ -module.exports = require('./dist/mithril'); +module.exports = require('./dist/deprecated'); diff --git a/addons/backgrounds/package.json b/addons/backgrounds/package.json index f429c870b99..7d56230d1ae 100644 --- a/addons/backgrounds/package.json +++ b/addons/backgrounds/package.json @@ -29,7 +29,7 @@ "babel-runtime": "^6.26.0", "global": "^4.3.2", "prop-types": "^15.6.1", - "react-lifecycles-compat": "^3.0.2" + "util-deprecate": "^1.0.2" }, "devDependencies": { "vue": "^2.5.16" diff --git a/addons/backgrounds/src/__tests__/index.js b/addons/backgrounds/src/__tests__/index.js deleted file mode 100644 index 8da89469a59..00000000000 --- a/addons/backgrounds/src/__tests__/index.js +++ /dev/null @@ -1,64 +0,0 @@ -import React from 'react'; -import { shallow } from 'enzyme'; -import EventEmitter from 'events'; - -import { BackgroundDecorator } from '../index'; -import Events from '../events'; - -const testStory = () => () =>

Hello World!

; - -describe('Background Decorator', () => { - it('should exist', () => { - const SpiedChannel = new EventEmitter(); - const backgroundDecorator = shallow( - - ); - expect(backgroundDecorator).toBeDefined(); - }); - - it('should send background-unset event when the component unmounts', () => { - const SpiedChannel = new EventEmitter(); - const backgroundDecorator = shallow( - - ); - - const spy = jest.fn(); - SpiedChannel.on(Events.UNSET, spy); - - backgroundDecorator.unmount(); - - expect(spy).toBeCalled(); - }); - - it('should send background-set event when the component mounts', () => { - const SpiedChannel = new EventEmitter(); - const spy = jest.fn(); - SpiedChannel.on(Events.SET, spy); - - shallow(); - - expect(spy).toBeCalled(); - }); - - it('should update story on change', () => { - const SpiedChannel = new EventEmitter(); - const nextStory = jest.fn(() =>

I am next story!

); - const backgroundDecorator = shallow( - - ); - - backgroundDecorator.setProps({ story: nextStory }); - expect(nextStory).toBeCalled(); - }); - - it('should not update story on other props change', () => { - const SpiedChannel = new EventEmitter(); - const story = jest.fn(() =>

I am the only one!

); - const backgroundDecorator = shallow( - - ); - - backgroundDecorator.setProps({ randomProp: true }); - expect(story.mock.calls).toHaveLength(1); - }); -}); diff --git a/addons/backgrounds/src/__tests__/vue.js b/addons/backgrounds/src/__tests__/vue.js deleted file mode 100644 index 3893473dad6..00000000000 --- a/addons/backgrounds/src/__tests__/vue.js +++ /dev/null @@ -1,44 +0,0 @@ -import Vue from 'vue'; -import { vueHandler } from '../vue'; - -import Events from '../events'; - -describe('Vue handler', () => { - it('Returns a component with a created function', () => { - const testChannel = { emit: jest.fn() }; - const testStory = () => ({ template: '
testStory
' }); - const testContext = { - kind: 'Foo', - story: 'bar baz', - }; - const testBackground = [ - { name: 'twitter', value: '#00aced' }, - { name: 'facebook', value: '#3b5998', default: true }, - ]; - const component = vueHandler(testChannel, testBackground)(testStory, testContext); - - expect(component).toMatchObject({ - created: expect.any(Function), - beforeDestroy: expect.any(Function), - render: expect.any(Function), - }); - }); - - it('Subscribes to the channel on creation', () => { - const testChannel = { emit: jest.fn() }; - const testStory = () => ({ render: h => h('div', ['testStory']) }); - const testContext = { - kind: 'Foo', - story: 'bar baz', - }; - const testBackground = [ - { name: 'twitter', value: '#00aced' }, - { name: 'facebook', value: '#3b5998', default: true }, - ]; - - new Vue(vueHandler(testChannel, testBackground)(testStory, testContext)).$mount(); - - expect(testChannel.emit).toHaveBeenCalledTimes(1); - expect(testChannel.emit).toHaveBeenCalledWith(Events.SET, expect.any(Array)); - }); -}); diff --git a/addons/backgrounds/src/deprecated.js b/addons/backgrounds/src/deprecated.js new file mode 100644 index 00000000000..f03a1a29018 --- /dev/null +++ b/addons/backgrounds/src/deprecated.js @@ -0,0 +1,8 @@ +import deprecate from 'util-deprecate'; + +import backgrounds from '.'; + +export default deprecate( + backgrounds, + "addon-backgrounds: framework-specific imports are deprecated, just use `import backgrounds from '@storybook/addon-backgrounds`" +); diff --git a/addons/backgrounds/src/html.js b/addons/backgrounds/src/html.js deleted file mode 100644 index 20eeb3d1c6a..00000000000 --- a/addons/backgrounds/src/html.js +++ /dev/null @@ -1,17 +0,0 @@ -import addons from '@storybook/addons'; -import CoreEvents from '@storybook/core-events'; - -import Events from './events'; - -const subscription = () => () => addons.getChannel().emit(Events.UNSET); - -let prevBackgrounds; - -export default backgrounds => story => { - if (prevBackgrounds !== backgrounds) { - addons.getChannel().emit(Events.SET, backgrounds); - prevBackgrounds = backgrounds; - } - addons.getChannel().emit(CoreEvents.REGISTER_SUBSCRIPTION, subscription); - return story(); -}; diff --git a/addons/backgrounds/src/index.js b/addons/backgrounds/src/index.js index 64142e74b8b..b6a1f857fd9 100644 --- a/addons/backgrounds/src/index.js +++ b/addons/backgrounds/src/index.js @@ -1,68 +1,20 @@ -import React from 'react'; -import { polyfill } from 'react-lifecycles-compat'; -import PropTypes from 'prop-types'; - import addons from '@storybook/addons'; +import CoreEvents from '@storybook/core-events'; import Events from './events'; -export class BackgroundDecorator extends React.Component { - constructor(props) { - super(props); +let prevBackgrounds; - const { channel } = props; - - // A channel is explicitly passed in for testing - if (channel) { - this.channel = channel; - } else { - this.channel = addons.getChannel(); - } - - this.state = {}; - } - - componentDidMount() { - this.channel.emit(Events.SET, this.props.backgrounds); - } - - componentWillUnmount() { - this.channel.emit(Events.UNSET); - } - - render() { - return this.state.story; - } -} - -BackgroundDecorator.getDerivedStateFromProps = ({ story }, { prevStory }) => { - if (story !== prevStory) { - return { - story: story(), - prevStory: story, - }; - } - return null; +const subscription = () => () => { + prevBackgrounds = null; + addons.getChannel().emit(Events.UNSET); }; -BackgroundDecorator.propTypes = { - backgrounds: PropTypes.arrayOf(PropTypes.object), - channel: PropTypes.shape({ - emit: PropTypes.func, - on: PropTypes.func, - removeListener: PropTypes.func, - }), - // eslint-disable-next-line react/no-unused-prop-types - story: PropTypes.func.isRequired, +export default backgrounds => story => { + if (prevBackgrounds !== backgrounds) { + addons.getChannel().emit(Events.SET, backgrounds); + prevBackgrounds = backgrounds; + } + addons.getChannel().emit(CoreEvents.REGISTER_SUBSCRIPTION, subscription); + return story(); }; - -BackgroundDecorator.defaultProps = { - backgrounds: [], - channel: undefined, -}; - -polyfill(BackgroundDecorator); - -export default backgrounds => story => ( - -); diff --git a/addons/backgrounds/src/mithril.js b/addons/backgrounds/src/mithril.js deleted file mode 100644 index 8c27f1390da..00000000000 --- a/addons/backgrounds/src/mithril.js +++ /dev/null @@ -1,41 +0,0 @@ -/** @jsx m */ - -// eslint-disable-next-line import/no-extraneous-dependencies -import m from 'mithril'; - -import addons from '@storybook/addons'; - -import Events from './events'; - -export class BackgroundDecorator { - constructor(vnode) { - this.props = vnode.attrs; - - const { channel, story } = vnode.attrs; - - // A channel is explicitly passed in for testing - if (channel) { - this.channel = channel; - } else { - this.channel = addons.getChannel(); - } - - this.story = story(); - } - - oncreate() { - this.channel.emit(Events.SET, this.props.backgrounds); - } - - onremove() { - this.channel.emit(Events.UNSET); - } - - view() { - return m(this.story); - } -} - -export default backgrounds => story => ({ - view: () => , -}); diff --git a/addons/backgrounds/src/vue.js b/addons/backgrounds/src/vue.js deleted file mode 100644 index 5ff182695a7..00000000000 --- a/addons/backgrounds/src/vue.js +++ /dev/null @@ -1,30 +0,0 @@ -import addons from '@storybook/addons'; - -import Events from './events'; - -export const vueHandler = (channel, backgrounds) => (getStory, context) => ({ - data() { - return { - context, - getStory, - story: getStory(context), - }; - }, - - render(h) { - return h(this.story); - }, - - created() { - channel.emit(Events.SET, backgrounds); - }, - - beforeDestroy() { - channel.emit(Events.UNSET); - }, -}); - -export default function makeDecorator(backgrounds) { - const channel = addons.getChannel(); - return vueHandler(channel, backgrounds); -} diff --git a/addons/backgrounds/vue.js b/addons/backgrounds/vue.js index 42311b17563..c22c26b6732 100644 --- a/addons/backgrounds/vue.js +++ b/addons/backgrounds/vue.js @@ -1 +1 @@ -module.exports = require('./dist/vue'); +module.exports = require('./dist/deprecated'); From 0ecf66e5295fbdc0577d07613ef18d5a9509027f Mon Sep 17 00:00:00 2001 From: Hypnosphi Date: Tue, 8 May 2018 02:16:38 +0300 Subject: [PATCH 003/143] Update examples --- addons/backgrounds/html.js | 1 - examples/html-kitchen-sink/stories/addon-backgrounds.stories.js | 2 +- .../src/stories/addon-backgrounds.stories.js | 2 +- .../vue-kitchen-sink/src/stories/addon-backgrounds.stories.js | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) delete mode 100644 addons/backgrounds/html.js diff --git a/addons/backgrounds/html.js b/addons/backgrounds/html.js deleted file mode 100644 index c22c26b6732..00000000000 --- a/addons/backgrounds/html.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('./dist/deprecated'); diff --git a/examples/html-kitchen-sink/stories/addon-backgrounds.stories.js b/examples/html-kitchen-sink/stories/addon-backgrounds.stories.js index 1c8eed6ac6d..1a5cc547cf2 100644 --- a/examples/html-kitchen-sink/stories/addon-backgrounds.stories.js +++ b/examples/html-kitchen-sink/stories/addon-backgrounds.stories.js @@ -1,6 +1,6 @@ import { storiesOf } from '@storybook/html'; -import backgrounds from '@storybook/addon-backgrounds/html'; +import backgrounds from '@storybook/addon-backgrounds'; storiesOf('Addons|Backgrounds', module) .addDecorator( diff --git a/examples/mithril-kitchen-sink/src/stories/addon-backgrounds.stories.js b/examples/mithril-kitchen-sink/src/stories/addon-backgrounds.stories.js index 373a25de5bb..307765b9369 100644 --- a/examples/mithril-kitchen-sink/src/stories/addon-backgrounds.stories.js +++ b/examples/mithril-kitchen-sink/src/stories/addon-backgrounds.stories.js @@ -4,7 +4,7 @@ import m from 'mithril'; import { storiesOf } from '@storybook/mithril'; -import backgrounds from '@storybook/addon-backgrounds/mithril'; +import backgrounds from '@storybook/addon-backgrounds'; import BaseButton from '../BaseButton'; storiesOf('Addons|Backgrounds', module) diff --git a/examples/vue-kitchen-sink/src/stories/addon-backgrounds.stories.js b/examples/vue-kitchen-sink/src/stories/addon-backgrounds.stories.js index aacee49f352..3621cf9d65d 100644 --- a/examples/vue-kitchen-sink/src/stories/addon-backgrounds.stories.js +++ b/examples/vue-kitchen-sink/src/stories/addon-backgrounds.stories.js @@ -1,5 +1,5 @@ import { storiesOf } from '@storybook/vue'; -import backgrounds from '@storybook/addon-backgrounds/vue'; +import backgrounds from '@storybook/addon-backgrounds'; storiesOf('Addon|Backgrounds', module) .addDecorator( From f9e946e92227902634be99a2cb08e50f4c7b58f5 Mon Sep 17 00:00:00 2001 From: Hypnosphi Date: Tue, 8 May 2018 02:29:18 +0300 Subject: [PATCH 004/143] Update readme --- addons/backgrounds/README.md | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/addons/backgrounds/README.md b/addons/backgrounds/README.md index cecda21cfec..0dae593a512 100644 --- a/addons/backgrounds/README.md +++ b/addons/backgrounds/README.md @@ -69,17 +69,3 @@ storiesOf("Button", module) .addDecorator(backgrounds) .add("with text", () => ); ``` - -> In the case of Mithril, use these imports: -> -> ```js -> import { storiesOf } from '@storybook/mithril'; -> import backgrounds from "@storybook/addon-backgrounds/mithril"; -> ``` - -> In the case of Vue, use these imports: -> -> ```js -> import { storiesOf } from '@storybook/vue'; -> import backgrounds from "@storybook/addon-backgrounds/vue"; -> ``` From 09225c28dd662b7f792b457bd1355815ef921090 Mon Sep 17 00:00:00 2001 From: Hypnosphi Date: Tue, 8 May 2018 02:33:11 +0300 Subject: [PATCH 005/143] Generic addon-events decorator --- addons/events/README.md | 18 ++++--- addons/events/html.js | 1 - addons/events/src/html.js | 27 ----------- addons/events/src/index.js | 28 ++++++++++- addons/events/src/preview.js | 47 ------------------- .../stories/addon-events.stories.js | 2 +- .../stories/addon-events.stories.js | 18 ++++--- 7 files changed, 44 insertions(+), 97 deletions(-) delete mode 100644 addons/events/html.js delete mode 100644 addons/events/src/html.js delete mode 100644 addons/events/src/preview.js diff --git a/addons/events/README.md b/addons/events/README.md index 81636b354b0..cb2ffb89eff 100644 --- a/addons/events/README.md +++ b/addons/events/README.md @@ -36,7 +36,7 @@ Then write your stories like this: ```js import { storiesOf } from '@storybook/react'; -import WithEvents from '@storybook/addon-events'; +import withEvents from '@storybook/addon-events'; import EventEmiter from 'event-emiter'; import Logger from './Logger'; @@ -47,10 +47,10 @@ const emit = emiter.emit.bind(emiter); storiesOf('WithEvents', module) - .addDecorator(getStory => ( - - {getStory()} - - )) + ] + }) + ) .add('Logger', () => ); ``` diff --git a/addons/events/html.js b/addons/events/html.js deleted file mode 100644 index 4f7edc6bedb..00000000000 --- a/addons/events/html.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('./dist/html'); diff --git a/addons/events/src/html.js b/addons/events/src/html.js deleted file mode 100644 index a7090b809c9..00000000000 --- a/addons/events/src/html.js +++ /dev/null @@ -1,27 +0,0 @@ -import addons from '@storybook/addons'; -import CoreEvents from '@storybook/core-events'; - -import { EVENTS } from './constants'; - -let prevEvents; -let currentEmit; - -const onEmit = event => { - currentEmit(event.name, event.payload); -}; - -const subscription = () => { - const channel = addons.getChannel(); - channel.on(EVENTS.EMIT, onEmit); - return () => channel.removeListener(EVENTS.EMIT, onEmit); -}; - -export default ({ emit, events }) => story => { - if (prevEvents !== events) { - addons.getChannel().emit(EVENTS.ADD, events); - prevEvents = events; - } - currentEmit = emit; - addons.getChannel().emit(CoreEvents.REGISTER_SUBSCRIPTION, subscription); - return story(); -}; diff --git a/addons/events/src/index.js b/addons/events/src/index.js index 48358fbf138..a7090b809c9 100644 --- a/addons/events/src/index.js +++ b/addons/events/src/index.js @@ -1 +1,27 @@ -export default from './preview'; +import addons from '@storybook/addons'; +import CoreEvents from '@storybook/core-events'; + +import { EVENTS } from './constants'; + +let prevEvents; +let currentEmit; + +const onEmit = event => { + currentEmit(event.name, event.payload); +}; + +const subscription = () => { + const channel = addons.getChannel(); + channel.on(EVENTS.EMIT, onEmit); + return () => channel.removeListener(EVENTS.EMIT, onEmit); +}; + +export default ({ emit, events }) => story => { + if (prevEvents !== events) { + addons.getChannel().emit(EVENTS.ADD, events); + prevEvents = events; + } + currentEmit = emit; + addons.getChannel().emit(CoreEvents.REGISTER_SUBSCRIPTION, subscription); + return story(); +}; diff --git a/addons/events/src/preview.js b/addons/events/src/preview.js deleted file mode 100644 index d5fb7b7db5e..00000000000 --- a/addons/events/src/preview.js +++ /dev/null @@ -1,47 +0,0 @@ -import { Component } from 'react'; -import addons from '@storybook/addons'; -import PropTypes from 'prop-types'; - -import { EVENTS } from './constants'; - -export default class WithEvents extends Component { - static propTypes = { - emit: PropTypes.func.isRequired, - events: PropTypes.arrayOf( - PropTypes.shape({ - name: PropTypes.string, - title: PropTypes.string, - payload: PropTypes.any, - }) - ).isRequired, - children: PropTypes.oneOfType([PropTypes.element, PropTypes.array]).isRequired, - }; - - componentDidMount() { - const { events } = this.props; - - this.channel = addons.getChannel(); - - this.channel.on(EVENTS.EMIT, this.onEmit); - - this.channel.emit(EVENTS.ADD, events); - } - - componentDidUpdate() { - const { events } = this.props; - - this.channel.emit(EVENTS.ADD, events); - } - - componentWillUnmount() { - this.channel.removeListener(EVENTS.EMIT, this.onEmit); - } - - onEmit = event => { - this.props.emit(event.name, event.payload); - }; - - render() { - return this.props.children; - } -} diff --git a/examples/html-kitchen-sink/stories/addon-events.stories.js b/examples/html-kitchen-sink/stories/addon-events.stories.js index f0be1bee0a0..954f7eeea87 100644 --- a/examples/html-kitchen-sink/stories/addon-events.stories.js +++ b/examples/html-kitchen-sink/stories/addon-events.stories.js @@ -4,7 +4,7 @@ import addons from '@storybook/addons'; import CoreEvents from '@storybook/core-events'; import json from 'format-json'; -import withEvents from '@storybook/addon-events/html'; +import withEvents from '@storybook/addon-events'; import './addon-events.css'; diff --git a/examples/official-storybook/stories/addon-events.stories.js b/examples/official-storybook/stories/addon-events.stories.js index 456aa4c8871..2379d0755af 100644 --- a/examples/official-storybook/stories/addon-events.stories.js +++ b/examples/official-storybook/stories/addon-events.stories.js @@ -2,7 +2,7 @@ import React from 'react'; import EventEmitter from 'eventemitter3'; import { storiesOf } from '@storybook/react'; -import WithEvents from '@storybook/addon-events'; +import withEvents from '@storybook/addon-events'; import Logger from './Logger'; const EVENTS = { @@ -20,10 +20,10 @@ const eventHandler = name => payload => emit(Logger.LOG_EVENT, { name, payload } Object.keys(EVENTS).forEach(event => emitter.on(EVENTS[event], eventHandler(EVENTS[event]))); storiesOf('Addons|Events', module) - .addDecorator(getStory => ( - - {getStory()} - - )) + ], + }) + ) .add('Logger', () => ); From 98a99b5c2f4b9c8e6189c2d4d3dd1faeedea58ed Mon Sep 17 00:00:00 2001 From: Tom Coleman Date: Tue, 8 May 2018 21:07:19 +1000 Subject: [PATCH 006/143] Refactor transitional decorator from addon-notes This should make it easy to transitional other addons to a parameter-based style --- addons/notes/src/index.js | 34 ++++++++---------------- lib/addons/package.json | 3 ++- lib/addons/src/index.js | 1 + lib/addons/src/transitional-decorator.js | 34 ++++++++++++++++++++++++ 4 files changed, 48 insertions(+), 24 deletions(-) create mode 100644 lib/addons/src/transitional-decorator.js diff --git a/addons/notes/src/index.js b/addons/notes/src/index.js index aeb02d93e25..4133739ed13 100644 --- a/addons/notes/src/index.js +++ b/addons/notes/src/index.js @@ -1,4 +1,4 @@ -import addons from '@storybook/addons'; +import addons, { makeTransitionalDecorator } from '@storybook/addons'; import marked from 'marked'; function renderMarkdown(text, options) { @@ -6,13 +6,13 @@ function renderMarkdown(text, options) { return marked(text); } -const decorator = options => { - const channel = addons.getChannel(); - return (getStory, context) => { - const { - parameters: { notes }, - } = context; - const storyOptions = notes || options; +export const withNotes = makeTransitionalDecorator({ + name: 'withNotes', + parameterName: 'notes', + wrapper: (getStory, context, { options, parameters }) => { + const channel = addons.getChannel(); + + const storyOptions = parameters || options; if (storyOptions) { const { text, markdown, markdownOptions } = @@ -26,23 +26,11 @@ const decorator = options => { } return getStory(context); - }; -}; - -const hoc = options => story => context => decorator(options)(story, context); + }, +}); export const withMarkdownNotes = (text, options) => - hoc({ + withNotes({ markdown: text, markdownOptions: options, }); - -export const withNotes = (...args) => { - // Used without options as .addDecorator(withNotes) - if (typeof args[0] === 'function') { - return decorator()(...args); - } - - // Input are options, ala .add('name', withNotes('note')(() => )) - return hoc(args[0]); -}; diff --git a/lib/addons/package.json b/lib/addons/package.json index de1e720df0c..9a9e53e0848 100644 --- a/lib/addons/package.json +++ b/lib/addons/package.json @@ -21,6 +21,7 @@ }, "dependencies": { "@storybook/channels": "4.0.0-alpha.4", - "global": "^4.3.2" + "global": "^4.3.2", + "util-deprecate": "^1.0.2" } } diff --git a/lib/addons/src/index.js b/lib/addons/src/index.js index 161a58ed006..e573c9000ec 100644 --- a/lib/addons/src/index.js +++ b/lib/addons/src/index.js @@ -2,6 +2,7 @@ import global from 'global'; export mockChannel from './storybook-channel-mock'; +export { makeTransitionalDecorator } from './transitional-decorator'; export class AddonStore { constructor() { diff --git a/lib/addons/src/transitional-decorator.js b/lib/addons/src/transitional-decorator.js new file mode 100644 index 00000000000..4ce96b48220 --- /dev/null +++ b/lib/addons/src/transitional-decorator.js @@ -0,0 +1,34 @@ +import deprecate from 'util-deprecate'; + +// Create a decorator that can be used both in the (deprecated) old "hoc" style: +// .add('story', decorator(options)(() => )); +// +// And in the new, "parameterized" style: +// .addDecorator(decorator) +// .add('story', () => , { name: { parameters } }); + +export const makeTransitionalDecorator = ({ name, parameterName, wrapper }) => { + const decorator = options => (getStory, context) => { + const parameters = context.parameters && context.parameters[parameterName]; + + return wrapper(getStory, context, { + options, + parameters, + }); + }; + + const hoc = deprecate( + options => story => context => decorator(options)(story, context), + `Passing stories directly into ${name}() is deprecated, instead use addDecorator(${name}) and pass options with the '${parameterName}' parameter` + ); + + return (...args) => { + // Used without options as .addDecorator(decorator) + if (typeof args[0] === 'function') { + return decorator()(...args); + } + + // Input are options, ala .add('name', decorator('note')(() => )) + return hoc(args[0]); + }; +}; From bb5c62fce892f59fdad71db09b48a790559ad543 Mon Sep 17 00:00:00 2001 From: Hypnosphi Date: Wed, 9 May 2018 02:35:41 +0300 Subject: [PATCH 007/143] Introduce "story rendered" event --- addons/a11y/src/index.js | 10 ++++++---- lib/core-events/index.js | 1 + lib/core/src/client/preview/start.js | 4 ++-- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/addons/a11y/src/index.js b/addons/a11y/src/index.js index f41765366cc..e330e75f4a9 100644 --- a/addons/a11y/src/index.js +++ b/addons/a11y/src/index.js @@ -1,4 +1,4 @@ -import { document, setTimeout } from 'global'; +import { document } from 'global'; import axe from 'axe-core'; import addons from '@storybook/addons'; import Events from '@storybook/core-events'; @@ -23,13 +23,15 @@ const runA11yCheck = () => { const a11ySubscription = () => { const channel = addons.getChannel(); + channel.on(Events.STORY_RENDERED, runA11yCheck); channel.on(RERUN_EVENT_ID, runA11yCheck); - return () => channel.removeListener(RERUN_EVENT_ID, runA11yCheck); + return () => { + channel.removeListener(Events.STORY_RENDERED, runA11yCheck); + channel.removeListener(RERUN_EVENT_ID, runA11yCheck); + }; }; export const checkA11y = story => { addons.getChannel().emit(Events.REGISTER_SUBSCRIPTION, a11ySubscription); - // We need to wait for rendering - setTimeout(runA11yCheck, 0); return story(); }; diff --git a/lib/core-events/index.js b/lib/core-events/index.js index d2c34524a25..c1cbe2ea881 100644 --- a/lib/core-events/index.js +++ b/lib/core-events/index.js @@ -9,4 +9,5 @@ module.exports = { STORY_ADDED: 'storyAdded', FORCE_RE_RENDER: 'forceReRender', REGISTER_SUBSCRIPTION: 'registerSubscription', + STORY_RENDERED: 'storyRendered', }; diff --git a/lib/core/src/client/preview/start.js b/lib/core/src/client/preview/start.js index a5b88361de0..cf34147fdb1 100644 --- a/lib/core/src/client/preview/start.js +++ b/lib/core/src/client/preview/start.js @@ -21,8 +21,6 @@ const classes = { }; function showMain() { - subscriptionsStore.clearUnused(); - document.body.classList.remove(classes.NOPREVIEW); document.body.classList.remove(classes.ERROR); @@ -168,6 +166,8 @@ export default function start(render, { decorateStory } = {}) { } try { renderMain(forceRender); + subscriptionsStore.clearUnused(); + addons.getChannel().emit(Events.STORY_RENDERED); } catch (ex) { showException(ex); } From 2e30aeb675b2211589f97ca99d18eb24f61d2cc6 Mon Sep 17 00:00:00 2001 From: Hypnosphi Date: Wed, 9 May 2018 18:14:04 +0300 Subject: [PATCH 008/143] Generic addon-knobs decorator --- ADDONS_SUPPORT.md | 6 +- addons/knobs/README.md | 83 +++-------- addons/knobs/angular.js | 2 +- addons/knobs/html.js | 2 +- addons/knobs/marko.js | 2 +- addons/knobs/mithril.js | 2 +- addons/knobs/polymer.js | 2 +- addons/knobs/react.js | 2 +- addons/knobs/src/angular/helpers.js | 136 ------------------ addons/knobs/src/angular/index.js | 24 ---- addons/knobs/src/angular/utils.js | 38 ----- addons/knobs/src/base.js | 99 ------------- addons/knobs/src/components/Panel.js | 9 +- .../knobs/src/components/__tests__/Select.js | 14 +- addons/knobs/src/components/types/Select.js | 29 +--- addons/knobs/src/deprecated.js | 31 ++++ addons/knobs/src/html/index.js | 32 ----- addons/knobs/src/index.js | 122 ++++++++++------ addons/knobs/src/marko/WrapStory.marko | 70 --------- addons/knobs/src/marko/index.js | 43 ------ addons/knobs/src/mithril/WrapStory.js | 68 --------- addons/knobs/src/mithril/index.js | 33 ----- addons/knobs/src/polymer/WrapStory.html | 94 ------------ addons/knobs/src/polymer/index.js | 33 ----- addons/knobs/src/react/WrapStory.js | 109 -------------- addons/knobs/src/react/index.js | 29 ---- addons/knobs/src/react/index.test.js | 27 ---- addons/knobs/src/{html => }/registerKnobs.js | 7 +- addons/knobs/src/vue/index.js | 75 ---------- addons/knobs/src/vue/index.test.js | 40 ------ addons/knobs/vue.js | 2 +- app/polymer/src/client/preview/render.js | 14 +- app/react/src/client/preview/render.js | 14 +- .../pages/basics/quick-start-guide/index.md | 11 +- .../angular-cli/addon-jest.testresults.json | 2 +- .../addon-knobs.stories.storyshot | 2 +- .../custom-styles.stories.storyshot | 9 +- .../src/stories/addon-knobs.stories.ts | 10 +- .../addon-knobs.stories.storyshot | 4 +- .../stories/addon-knobs.stories.js | 13 +- examples/marko-cli/package.json | 2 +- .../src/stories/addon-actions.stories.js | 2 +- .../src/stories/addon-knobs.stories.js | 2 +- .../src/stories/addon-knobs.stories.js | 12 +- .../addon-knobs.stories.storyshot | 63 +------- .../stories/addon-knobs.stories.js | 98 ++----------- .../src/stories/addon-knobs.stories.js | 10 +- .../addon-knobs.stories.storyshot | 2 +- .../src/stories/addon-knobs.stories.js | 10 +- lib/core/src/client/preview/start.js | 1 + 50 files changed, 232 insertions(+), 1314 deletions(-) delete mode 100644 addons/knobs/src/angular/helpers.js delete mode 100644 addons/knobs/src/angular/index.js delete mode 100644 addons/knobs/src/angular/utils.js delete mode 100644 addons/knobs/src/base.js create mode 100644 addons/knobs/src/deprecated.js delete mode 100644 addons/knobs/src/html/index.js delete mode 100644 addons/knobs/src/marko/WrapStory.marko delete mode 100644 addons/knobs/src/marko/index.js delete mode 100644 addons/knobs/src/mithril/WrapStory.js delete mode 100644 addons/knobs/src/mithril/index.js delete mode 100644 addons/knobs/src/polymer/WrapStory.html delete mode 100644 addons/knobs/src/polymer/index.js delete mode 100644 addons/knobs/src/react/WrapStory.js delete mode 100644 addons/knobs/src/react/index.js delete mode 100644 addons/knobs/src/react/index.test.js rename addons/knobs/src/{html => }/registerKnobs.js (92%) delete mode 100644 addons/knobs/src/vue/index.js delete mode 100644 addons/knobs/src/vue/index.test.js diff --git a/ADDONS_SUPPORT.md b/ADDONS_SUPPORT.md index 86aba7bb261..667b9b71c19 100644 --- a/ADDONS_SUPPORT.md +++ b/ADDONS_SUPPORT.md @@ -2,11 +2,11 @@ | |[React](app/react)|[React Native](app/react-native)|[Vue](app/vue)|[Angular](app/angular)| [Polymer](app/polymer)| [Mithril](app/mithril)| [HTML](app/html)| [Marko](app/marko)| | ----------- |:-------:|:-------:|:-------:|:-------:|:-------:|:-------:|:-------:| -|[a11y](addons/a11y) |+|+|+|+|+|+|+|+| +|[a11y](addons/a11y) |+| |+|+|+|+|+|+| |[actions](addons/actions) |+|+|+|+|+|+|+|+| -|[backgrounds](addons/backgrounds) |+|+|+|+|+|+|+|+| +|[backgrounds](addons/backgrounds) |+| |+|+|+|+|+|+| |[centered](addons/centered) |+| |+| | |+|+| | -|[events](addons/events) |+| | | | | |+| | +|[events](addons/events) |+| |+|+|+|+|+|+| |[graphql](addons/graphql) |+| | | | | | | | |[info](addons/info) |+| | | | | | | | |[jest](addons/jest) |+| | |+| | |+| | diff --git a/addons/knobs/README.md b/addons/knobs/README.md index ca18c2472b2..5311e52dc95 100644 --- a/addons/knobs/README.md +++ b/addons/knobs/README.md @@ -39,7 +39,7 @@ Now, write your stories with knobs. ### With React ```js import { storiesOf } from '@storybook/react'; -import { withKnobs, text, boolean, number } from '@storybook/addon-knobs/react'; +import { withKnobs, text, boolean, number } from '@storybook/addon-knobs'; const stories = storiesOf('Storybook Knobs', module); @@ -67,7 +67,7 @@ stories.add('as dynamic variables', () => { ### With Angular ```js import { storiesOf } from '@storybook/angular'; -import { boolean, number, text, withKnobs } from '@storybook/addon-knobs/angular'; +import { boolean, number, text, withKnobs } from '@storybook/addon-knobs'; import { Button } from '@storybook/angular/demo'; @@ -98,34 +98,6 @@ stories.add('as dynamic variables', () => { }); ``` -> In the case of Vue, use these imports: -> -> ```js -> import { storiesOf } from '@storybook/vue'; -> import { withKnobs, text, boolean, number } from '@storybook/addon-knobs/vue'; -> ``` -> -> In the case of React-Native, use these imports: -> -> ```js -> import { storiesOf } from '@storybook/react-native'; -> import { withKnobs, text, boolean, number } from '@storybook/addon-knobs/react'; -> ``` -> -> In the case of Angular, use these imports: -> -> ```js -> import { storiesOf } from '@storybook/angular'; -> import { withKnobs, text, boolean, number } from '@storybook/addon-knobs/angular'; -> ``` -> -> In the case of Mithril, use these imports: -> -> ```js -> import { storiesOf } from '@storybook/mithril'; -> import { withKnobs, text, boolean, number } from '@storybook/addon-knobs/mithril'; -> ``` - You can see your Knobs in a Storybook panel as shown below. ![](docs/demo.png) @@ -146,7 +118,7 @@ Just like that, you can import any other following Knobs: Allows you to get some text from the user. ```js -import { text } from '@storybook/addon-knobs/react'; +import { text } from '@storybook/addon-knobs'; const label = 'Your Name'; const defaultValue = 'Arunoda Susiripala'; @@ -160,7 +132,7 @@ const value = text(label, defaultValue, groupId); Allows you to get a boolean value from the user. ```js -import { boolean } from '@storybook/addon-knobs/react'; +import { boolean } from '@storybook/addon-knobs'; const label = 'Agree?'; const defaultValue = false; @@ -173,7 +145,7 @@ const value = boolean(label, defaultValue, groupId); Allows you to get a number from the user. ```js -import { number } from '@storybook/addon-knobs/react'; +import { number } from '@storybook/addon-knobs'; const label = 'Age'; const defaultValue = 78; @@ -191,7 +163,7 @@ const value = number(label, defaultValue, {}, groupId); Allows you to get a number from the user using a range slider. ```js -import { number } from '@storybook/addon-knobs/react'; +import { number } from '@storybook/addon-knobs'; const label = 'Temperature'; const defaultValue = 73; @@ -211,7 +183,7 @@ const value = number(label, defaultValue, options, groupId); Allows you to get a colour from the user. ```js -import { color } from '@storybook/addon-knobs/react'; +import { color } from '@storybook/addon-knobs'; const label = 'Color'; const defaultValue = '#ff00ff'; @@ -225,7 +197,7 @@ const value = color(label, defaultValue, groupId); Allows you to get a JSON object or array from the user. ```js -import { object } from '@storybook/addon-knobs/react'; +import { object } from '@storybook/addon-knobs'; const label = 'Styles'; const defaultValue = { @@ -243,7 +215,7 @@ const value = object(label, defaultValue, groupId); Allows you to get an array of strings from the user. ```js -import { array } from '@storybook/addon-knobs/react'; +import { array } from '@storybook/addon-knobs'; const label = 'Styles'; const defaultValue = ['Red']; @@ -256,7 +228,7 @@ const value = array(label, defaultValue); > By default it's a comma, but this can be override by passing a separator variable. > > ```js -> import { array } from '@storybook/addon-knobs/react'; +> import { array } from '@storybook/addon-knobs'; > > const label = 'Styles'; > const defaultValue = ['Red']; @@ -274,28 +246,7 @@ const value = array(label, defaultValue, ',', groupId); Allows you to get a value from a select box from the user. ```js -import { select } from '@storybook/addon-knobs/react'; - -const label = 'Colors'; -const options = { - red: 'Red', - blue: 'Blue', - yellow: 'Yellow', -}; -const defaultValue = 'red'; -const groupId = 'GROUP-ID1'; - -const value = select(label, options, defaultValue, groupId); -``` - -> You can also provide options as an array like this: `['red', 'blue', 'yellow']` - -### selectV2 - -In v4 this will replace `select`. The value from the select now uses the values from the `options` object. - -```js -import { selectV2 } from '@storybook/addon-knobs'; +import { select } from '@storybook/addon-knobs'; const label = 'Colors'; const options = { @@ -308,15 +259,17 @@ const options = { const defaultValue = 'red'; const groupId = 'GROUP-ID1'; -const value = selectV2(label, options, defaultValue, groupId); +const value = select(label, options, defaultValue, groupId); ``` +> You can also provide options as an array like this: `['red', 'blue', 'yellow']` + ### files Allows you to get a value from a file input from the user. ```js -import { files } from '@storybook/addon-knobs/react'; +import { files } from '@storybook/addon-knobs'; const label = 'Images'; const defaultValue = []; @@ -331,7 +284,7 @@ const value = files(label, accept, defaultValue); Allow you to get date (and time) from the user. ```js -import { date } from '@storybook/addon-knobs/react'; +import { date } from '@storybook/addon-knobs'; const label = 'Event Date'; const defaultValue = new Date('Jan 20 2017'); @@ -373,12 +326,12 @@ Usage: ```js import { storiesOf } from '@storybook/react'; +import { withKnobsOptions } from '@storybook/addon-knobs'; const stories = storiesOf('Storybook Knobs', module); stories.addDecorator(withKnobsOptions({ - debounce: { wait: number, leading: boolean}, // Same as lodash debounce. - timestamps: true // Doesn't emit events while user is typing. + timestamps: true, // Doesn't emit events while user is typing. escapeHTML: true // Escapes strings to be safe for inserting as innerHTML. This option is true by default in storybook for Vue, Angular, and Polymer, because those frameworks allow rendering plain HTML. // You can still set it to false, but it's strongly unrecommendend in cases when you host your storybook on some route of your main site or web app. diff --git a/addons/knobs/angular.js b/addons/knobs/angular.js index e40620072b5..c22c26b6732 100644 --- a/addons/knobs/angular.js +++ b/addons/knobs/angular.js @@ -1 +1 @@ -module.exports = require('./dist/angular'); +module.exports = require('./dist/deprecated'); diff --git a/addons/knobs/html.js b/addons/knobs/html.js index 4f7edc6bedb..c22c26b6732 100644 --- a/addons/knobs/html.js +++ b/addons/knobs/html.js @@ -1 +1 @@ -module.exports = require('./dist/html'); +module.exports = require('./dist/deprecated'); diff --git a/addons/knobs/marko.js b/addons/knobs/marko.js index 239559b30c5..c22c26b6732 100644 --- a/addons/knobs/marko.js +++ b/addons/knobs/marko.js @@ -1 +1 @@ -module.exports = require('./dist/marko'); +module.exports = require('./dist/deprecated'); diff --git a/addons/knobs/mithril.js b/addons/knobs/mithril.js index 884a541476e..c22c26b6732 100644 --- a/addons/knobs/mithril.js +++ b/addons/knobs/mithril.js @@ -1 +1 @@ -module.exports = require('./dist/mithril'); +module.exports = require('./dist/deprecated'); diff --git a/addons/knobs/polymer.js b/addons/knobs/polymer.js index b3cfb782c79..c22c26b6732 100644 --- a/addons/knobs/polymer.js +++ b/addons/knobs/polymer.js @@ -1 +1 @@ -module.exports = require('./dist/polymer'); +module.exports = require('./dist/deprecated'); diff --git a/addons/knobs/react.js b/addons/knobs/react.js index 70e1111ae07..c22c26b6732 100644 --- a/addons/knobs/react.js +++ b/addons/knobs/react.js @@ -1 +1 @@ -module.exports = require('./dist/react'); +module.exports = require('./dist/deprecated'); diff --git a/addons/knobs/src/angular/helpers.js b/addons/knobs/src/angular/helpers.js deleted file mode 100644 index 3b05496d41d..00000000000 --- a/addons/knobs/src/angular/helpers.js +++ /dev/null @@ -1,136 +0,0 @@ -/* eslint no-underscore-dangle: 0 */ -// eslint-disable-next-line import/no-extraneous-dependencies -import { Component, SimpleChange, ChangeDetectorRef } from '@angular/core'; -import { getParameters, getAnnotations } from './utils'; - -const getComponentMetadata = ({ component, props = {}, moduleMetadata = {} }) => { - if (!component || typeof component !== 'function') throw new Error('No valid component provided'); - - const componentMeta = getAnnotations(component)[0] || {}; - const paramsMetadata = getParameters(component); - - return { - component, - props, - componentMeta, - moduleMetadata, - params: paramsMetadata, - }; -}; - -const getAnnotatedComponent = ({ componentMeta, component, params, knobStore, channel }) => { - const KnobWrapperComponent = function KnobWrapperComponent(cd, ...args) { - component.call(this, ...args); - this.cd = cd; - this.knobChanged = this.knobChanged.bind(this); - this.setPaneKnobs = this.setPaneKnobs.bind(this); - }; - - KnobWrapperComponent.prototype = Object.create(component.prototype); - KnobWrapperComponent.annotations = [new Component(componentMeta)]; - KnobWrapperComponent.parameters = [[ChangeDetectorRef], ...params]; - - KnobWrapperComponent.prototype.constructor = KnobWrapperComponent; - KnobWrapperComponent.prototype.ngOnInit = function onInit() { - if (component.prototype.ngOnInit) { - component.prototype.ngOnInit.call(this); - } - - channel.on('addon:knobs:knobChange', this.knobChanged); - channel.on('addon:knobs:knobClick', this.knobClicked); - knobStore.subscribe(this.setPaneKnobs); - this.setPaneKnobs(); - }; - - KnobWrapperComponent.prototype.ngOnDestroy = function onDestroy() { - if (component.prototype.ngOnDestroy) { - component.prototype.ngOnDestroy.call(this); - } - - channel.removeListener('addon:knobs:knobChange', this.knobChanged); - channel.removeListener('addon:knobs:knobClick', this.knobClicked); - knobStore.unsubscribe(this.setPaneKnobs); - }; - - KnobWrapperComponent.prototype.ngOnChanges = function onChanges(changes) { - if (component.prototype.ngOnChanges) { - component.prototype.ngOnChanges.call(this, changes); - } - }; - - KnobWrapperComponent.prototype.setPaneKnobs = function setPaneKnobs(timestamp = +new Date()) { - channel.emit('addon:knobs:setKnobs', { - knobs: knobStore.getAll(), - timestamp, - }); - }; - - KnobWrapperComponent.prototype.knobChanged = function knobChanged(change) { - const { name, value } = change; - const knobOptions = knobStore.get(name); - const oldValue = knobOptions.value; - knobOptions.value = value; - knobStore.markAllUnused(); - this[name] = value; - this.cd.detectChanges(); - this.ngOnChanges({ - [name]: new SimpleChange(oldValue, value, false), - }); - }; - - KnobWrapperComponent.prototype.knobClicked = function knobClicked(clicked) { - const knobOptions = knobStore.get(clicked.name); - knobOptions.callback(); - }; - - return KnobWrapperComponent; -}; - -const createComponentFromTemplate = (template, styles) => { - const componentClass = class DynamicComponent {}; - - return Component({ - template, - styles, - })(componentClass); -}; - -const resetKnobs = (knobStore, channel) => { - knobStore.reset(); - channel.emit('addon:knobs:setKnobs', { - knobs: knobStore.getAll(), - timestamp: false, - }); -}; - -export function prepareComponent({ getStory, context, channel, knobStore }) { - resetKnobs(knobStore, channel); - const story = getStory(context); - let { component } = story; - const { template, styles } = story; - - if (!component) { - component = createComponentFromTemplate(template, styles); - } - - const { componentMeta, props, params, moduleMetadata } = getComponentMetadata({ - ...story, - component, - }); - - if (!componentMeta && component) throw new Error('No component metadata available'); - - const AnnotatedComponent = getAnnotatedComponent({ - componentMeta, - component, - params, - knobStore, - channel, - }); - - return { - component: AnnotatedComponent, - props, - moduleMetadata, - }; -} diff --git a/addons/knobs/src/angular/index.js b/addons/knobs/src/angular/index.js deleted file mode 100644 index 688740ad83e..00000000000 --- a/addons/knobs/src/angular/index.js +++ /dev/null @@ -1,24 +0,0 @@ -import { prepareComponent } from './helpers'; - -import { - knob, - text, - boolean, - number, - color, - object, - array, - date, - select, - selectV2, - button, - files, - makeDecorators, -} from '../base'; - -export { knob, text, boolean, number, color, object, array, date, select, selectV2, button, files }; - -export const angularHandler = (channel, knobStore) => getStory => context => - prepareComponent({ getStory, context, channel, knobStore }); - -export const { withKnobs, withKnobsOptions } = makeDecorators(angularHandler, { escapeHTML: true }); diff --git a/addons/knobs/src/angular/utils.js b/addons/knobs/src/angular/utils.js deleted file mode 100644 index ddb2abe543c..00000000000 --- a/addons/knobs/src/angular/utils.js +++ /dev/null @@ -1,38 +0,0 @@ -/* globals window */ -/* eslint-disable no-param-reassign */ -// eslint-disable-next-line import/no-extraneous-dependencies -import { ɵReflectionCapabilities } from '@angular/core'; - -// eslint-disable-next-line new-cap -const reflectionCapabilities = new ɵReflectionCapabilities(); - -function getMeta(component, [name1, name2], defaultValue) { - if (!name2) { - name2 = name1; - name1 = `__${name1}__`; - } - - if (component[name1]) { - return component[name1]; - } - - if (component[name2]) { - return component[name2]; - } - - return window.Reflect.getMetadata(name2, component) || defaultValue; -} - -export function getAnnotations(component) { - return getMeta(component, ['annotations'], []); -} - -export function getParameters(component) { - const params = reflectionCapabilities.parameters(component); - - if (!params || !params[0]) { - return getMeta(component, ['parameters'], []); - } - - return params; -} diff --git a/addons/knobs/src/base.js b/addons/knobs/src/base.js deleted file mode 100644 index 1343fc15b10..00000000000 --- a/addons/knobs/src/base.js +++ /dev/null @@ -1,99 +0,0 @@ -import deprecate from 'util-deprecate'; -import addons from '@storybook/addons'; - -import KnobManager from './KnobManager'; - -export const manager = new KnobManager(); - -export function knob(name, options) { - return manager.knob(name, options); -} - -export function text(name, value, groupId) { - return manager.knob(name, { type: 'text', value, groupId }); -} - -export function boolean(name, value, groupId) { - return manager.knob(name, { type: 'boolean', value, groupId }); -} - -export function number(name, value, options = {}, groupId) { - const rangeDefaults = { - min: 0, - max: 10, - step: 1, - }; - - const mergedOptions = options.range - ? { - ...rangeDefaults, - ...options, - } - : options; - - const finalOptions = { - ...mergedOptions, - type: 'number', - value, - groupId, - }; - - return manager.knob(name, finalOptions); -} - -export function color(name, value, groupId) { - return manager.knob(name, { type: 'color', value, groupId }); -} - -export function object(name, value, groupId) { - return manager.knob(name, { type: 'object', value, groupId }); -} - -export const select = deprecate( - (name, options, value, groupId) => - manager.knob(name, { type: 'select', options, value, groupId }), - 'in v4 keys/values of the options argument are reversed' -); - -export function selectV2(name, options, value, groupId) { - return manager.knob(name, { type: 'select', selectV2: true, options, value, groupId }); -} - -export function array(name, value, separator = ',', groupId) { - return manager.knob(name, { type: 'array', value, separator, groupId }); -} - -export function date(name, value = new Date(), groupId) { - const proxyValue = value ? value.getTime() : null; - return manager.knob(name, { type: 'date', value: proxyValue, groupId }); -} - -export function button(name, callback, groupId) { - return manager.knob(name, { type: 'button', callback, hideLabel: true, groupId }); -} - -export function files(name, accept, value = []) { - return manager.knob(name, { type: 'files', accept, value }); -} - -export function makeDecorators(handler, defaultOptions = {}) { - function wrapperKnobs(options) { - const allOptions = { ...defaultOptions, ...options }; - - manager.setOptions(allOptions); - const channel = addons.getChannel(); - manager.setChannel(channel); - channel.emit('addon:knobs:setOptions', allOptions); - - return handler(channel, manager.knobStore); - } - - return { - withKnobs(storyFn, context) { - return wrapperKnobs()(storyFn)(context); - }, - withKnobsOptions(options = {}) { - return (storyFn, context) => wrapperKnobs(options)(storyFn)(context); - }, - }; -} diff --git a/addons/knobs/src/components/Panel.js b/addons/knobs/src/components/Panel.js index c0f66faf579..b64d9649457 100644 --- a/addons/knobs/src/components/Panel.js +++ b/addons/knobs/src/components/Panel.js @@ -1,6 +1,5 @@ import React from 'react'; import PropTypes from 'prop-types'; -import debounce from 'lodash.debounce'; import GroupTabs from './GroupTabs'; import PropForm from './PropForm'; @@ -81,14 +80,8 @@ export default class Panel extends React.Component { this.setState({ groupId: name }); } - setOptions(options = { debounce: false, timestamps: false }) { + setOptions(options = { timestamps: false }) { this.options = options; - - if (options.debounce) { - this.emitChange = debounce(this.emitChange, options.debounce.wait, { - leading: options.debounce.leading, - }); - } } setKnobs({ knobs, timestamp }) { diff --git a/addons/knobs/src/components/__tests__/Select.js b/addons/knobs/src/components/__tests__/Select.js index 71dd7825196..464d43f66bd 100644 --- a/addons/knobs/src/components/__tests__/Select.js +++ b/addons/knobs/src/components/__tests__/Select.js @@ -16,19 +16,7 @@ describe('Select', () => { }; }); - it('displays value', () => { - const wrapper = shallow(); - - const green = wrapper.find('option').first(); - expect(green.text()).toEqual('#00ff00'); - expect(green.prop('value')).toEqual('Green'); - }); - - describe('selectV2', () => { - beforeEach(() => { - knob.selectV2 = true; - }); - + describe('displays value', () => { it('correctly maps option keys and values', () => { const wrapper = shallow(); diff --git a/addons/knobs/src/components/types/Select.js b/addons/knobs/src/components/types/Select.js index 33a445e4b60..f091f8f83fa 100644 --- a/addons/knobs/src/components/types/Select.js +++ b/addons/knobs/src/components/types/Select.js @@ -18,35 +18,17 @@ const styles = { }; class SelectType extends React.Component { - constructor(props, context) { - super(props, context); - - if (!props.knob.selectV2) { - console.info('Select Knob V1 will be deprecated, please upgrade to V2 of Select Knob'); // eslint-disable-line no-console - } - } - - renderOptionList({ options, selectV2 }) { + renderOptionList({ options }) { if (Array.isArray(options)) { return options.map(val => this.renderOption(val, val)); } - return Object.keys(options).map(key => this.renderOption(key, options[key], selectV2)); + return Object.keys(options).map(key => this.renderOption(key, options[key])); } - renderOption(key, value, selectV2) { - const opts = { - key, - value: key, - }; + renderOption(key, value) { + const opts = { key, value }; - let display = value; - - if (selectV2) { - opts.value = value; - display = key; - } - - return ; + return ; } render() { @@ -75,7 +57,6 @@ SelectType.propTypes = { name: PropTypes.string, value: PropTypes.string, options: PropTypes.oneOfType([PropTypes.array, PropTypes.object]), - selectV2: PropTypes.bool, }), onChange: PropTypes.func, }; diff --git a/addons/knobs/src/deprecated.js b/addons/knobs/src/deprecated.js new file mode 100644 index 00000000000..7822c6bf60c --- /dev/null +++ b/addons/knobs/src/deprecated.js @@ -0,0 +1,31 @@ +import deprecate from 'util-deprecate'; + +import { + knob, + text, + boolean, + number, + color, + object, + array, + date, + select, + files, + button, + withKnobs as commonWithKnobs, + withKnobsOptions as commonWithKnobsOptions, +} from '.'; + +export { knob, text, boolean, number, color, object, array, date, select, files, button }; + +export const selectV2 = deprecate(select, 'selectV2 has been renamed to select'); + +export const withKnobs = deprecate( + commonWithKnobs, + "addon-knobs: framework-specific imports are deprecated, just use `import {withKnobs} from '@storybook/addon-knobs`" +); + +export const withKnobsOptions = deprecate( + commonWithKnobsOptions, + "addon-knobs: framework-specific imports are deprecated, just use `import {withKnobsOptions} from '@storybook/addon-knobs`" +); diff --git a/addons/knobs/src/html/index.js b/addons/knobs/src/html/index.js deleted file mode 100644 index a032f2979ea..00000000000 --- a/addons/knobs/src/html/index.js +++ /dev/null @@ -1,32 +0,0 @@ -import registerKnobs from './registerKnobs'; - -import { - knob, - text, - boolean, - number, - color, - object, - array, - date, - select, - files, - manager, - makeDecorators, -} from '../base'; - -export { knob, text, boolean, number, color, object, array, date, select, files }; - -export function button(name, callback) { - return manager.knob(name, { type: 'button', value: Date.now(), callback, hideLabel: true }); -} - -function prepareComponent({ getStory, context }) { - registerKnobs(); - - return getStory(context); -} - -export const htmlHandler = () => getStory => context => prepareComponent({ getStory, context }); - -export const { withKnobs, withKnobsOptions } = makeDecorators(htmlHandler, { escapeHTML: true }); diff --git a/addons/knobs/src/index.js b/addons/knobs/src/index.js index 5c264102cb2..d0bc02d4916 100644 --- a/addons/knobs/src/index.js +++ b/addons/knobs/src/index.js @@ -1,56 +1,86 @@ -import { window } from 'global'; -import deprecate from 'util-deprecate'; import addons from '@storybook/addons'; -import { vueHandler } from './vue'; -import { reactHandler } from './react'; +import { manager, registerKnobs } from './registerKnobs'; -import { - array, - boolean, - button, - files, - color, - date, - knob, - manager, - number, - object, - select, - selectV2, - text, -} from './base'; +export function knob(name, options) { + return manager.knob(name, options); +} -export { knob, text, boolean, number, color, object, array, date, button, select, selectV2, files }; +export function text(name, value, groupId) { + return manager.knob(name, { type: 'text', value, groupId }); +} -deprecate(() => {}, -'Using @storybook/addon-knobs directly is discouraged, please use @storybook/addon-knobs/{{framework}}'); +export function boolean(name, value, groupId) { + return manager.knob(name, { type: 'boolean', value, groupId }); +} -// generic higher-order component decorator for all platforms - usage is discouraged -// This file Should be removed with 4.0 release -function wrapperKnobs(options) { +export function number(name, value, options = {}, groupId) { + const rangeDefaults = { + min: 0, + max: 10, + step: 1, + }; + + const mergedOptions = options.range + ? { + ...rangeDefaults, + ...options, + } + : options; + + const finalOptions = { + ...mergedOptions, + type: 'number', + value, + groupId, + }; + + return manager.knob(name, finalOptions); +} + +export function color(name, value, groupId) { + return manager.knob(name, { type: 'color', value, groupId }); +} + +export function object(name, value, groupId) { + return manager.knob(name, { type: 'object', value, groupId }); +} + +export function select(name, options, value, groupId) { + return manager.knob(name, { type: 'select', selectV2: true, options, value, groupId }); +} + +export function array(name, value, separator = ',', groupId) { + return manager.knob(name, { type: 'array', value, separator, groupId }); +} + +export function date(name, value = new Date(), groupId) { + const proxyValue = value ? value.getTime() : null; + return manager.knob(name, { type: 'date', value: proxyValue, groupId }); +} + +export function button(name, callback, groupId) { + return manager.knob(name, { type: 'button', callback, hideLabel: true, groupId }); +} + +export function files(name, accept, value = []) { + return manager.knob(name, { type: 'files', accept, value }); +} + +const defaultOptions = { + escapeHTML: true, +}; + +export const withKnobsOptions = (options = {}) => storyFn => { + const allOptions = { ...defaultOptions, ...options }; + + manager.setOptions(allOptions); const channel = addons.getChannel(); manager.setChannel(channel); + channel.emit('addon:knobs:setOptions', allOptions); - if (options) channel.emit('addon:knobs:setOptions', options); + registerKnobs(); + return storyFn(); +}; - switch (window.STORYBOOK_ENV) { - case 'vue': { - return vueHandler(channel, manager.knobStore); - } - case 'react': { - return reactHandler(channel, manager.knobStore); - } - default: { - return reactHandler(channel, manager.knobStore); - } - } -} - -export function withKnobs(storyFn, context) { - return wrapperKnobs()(storyFn)(context); -} - -export function withKnobsOptions(options = {}) { - return (storyFn, context) => wrapperKnobs(options)(storyFn)(context); -} +export const withKnobs = withKnobsOptions(); diff --git a/addons/knobs/src/marko/WrapStory.marko b/addons/knobs/src/marko/WrapStory.marko deleted file mode 100644 index 790abc65f55..00000000000 --- a/addons/knobs/src/marko/WrapStory.marko +++ /dev/null @@ -1,70 +0,0 @@ -class { - - onCreate(input) { - this.props = input.props; - this.knobChanged = this.knobChanged.bind(this); - this.knobClicked = this.knobClicked.bind(this); - this.resetKnobs = this.resetKnobs.bind(this); - this.setPaneKnobs = this.setPaneKnobs.bind(this); - } - - onMount() { - // Watch for changes in knob editor. - this.props.channel.on('addon:knobs:knobChange', this.knobChanged); - // Watch for clicks in knob editor. - this.props.channel.on('addon:knobs:knobClick', this.knobClicked); - // Watch for the reset event and reset knobs. - this.props.channel.on('addon:knobs:reset', this.resetKnobs); - // Watch for any change in the knobStore and set the panel again for those changes. - this.props.knobStore.subscribe(this.setPaneKnobs); - // Set knobs in the panel for the first time. - this.setPaneKnobs(); - } - - onDestroy() { - this.props.channel.removeListener('addon:knobs:knobChange', this.knobChanged); - this.props.channel.removeListener('addon:knobs:knobClick', this.knobClicked); - this.props.channel.removeListener('addon:knobs:reset', this.resetKnobs); - this.props.knobStore.unsubscribe(this.setPaneKnobs); - } - - setPaneKnobs(timestamp = +new Date()) { - const { channel, knobStore } = this.props; - channel.emit('addon:knobs:setKnobs', { knobs: knobStore.getAll(), timestamp }); - } - - knobChanged(change) { - const { name, value } = change; - const { knobStore, storyFn, context } = this.props; - - // Update the related knob and it's value. - var knobOptions = knobStore.get(name); - knobOptions.value = value; - knobStore.markAllUnused(); - - this.renderElement(storyFn(context)); - } - - knobClicked(clicked) { - let knobOptions = this.props.knobStore.get(clicked.name); - knobOptions.callback(); - } - - resetKnobs() { - const { knobStore, storyFn, context } = this.props; - knobStore.reset(); - this.renderElement(storyFn(context)); - this.setPaneKnobs(false); - } - - renderElement(storyContent) { - var WrapperElm = document.getElementById('Wrapper'); - if(this.currLoadedComponent) { - this.currLoadedComponent.destroy(); - this.currLoadedComponent = null; - } - this.currLoadedComponent = storyContent.appendTo(WrapperElm).getComponent(); - } -} - -
\ No newline at end of file diff --git a/addons/knobs/src/marko/index.js b/addons/knobs/src/marko/index.js deleted file mode 100644 index 66ec565b5d9..00000000000 --- a/addons/knobs/src/marko/index.js +++ /dev/null @@ -1,43 +0,0 @@ -import addons from '@storybook/addons'; -import WrapStory from './WrapStory.marko'; - -import { - knob, - text, - boolean, - number, - color, - object, - array, - date, - select, - selectV2, - button, - manager, -} from '../base'; - -export { knob, text, boolean, number, color, object, array, date, select, selectV2, button }; - -export const markoHandler = (channel, knobStore) => getStory => context => { - const initialContent = getStory(context); - const props = { context, storyFn: getStory, channel, knobStore, initialContent }; - - return WrapStory.renderSync({ props }); -}; - -function wrapperKnobs(options) { - const channel = addons.getChannel(); - manager.setChannel(channel); - - if (options) channel.emit('addon:knobs:setOptions', options); - - return markoHandler(channel, manager.knobStore); -} - -export function withKnobs(storyFn, context) { - return wrapperKnobs()(storyFn)(context); -} - -export function withKnobsOptions(options = {}) { - return (storyFn, context) => wrapperKnobs(options)(storyFn)(context); -} diff --git a/addons/knobs/src/mithril/WrapStory.js b/addons/knobs/src/mithril/WrapStory.js deleted file mode 100644 index dd0ff093e75..00000000000 --- a/addons/knobs/src/mithril/WrapStory.js +++ /dev/null @@ -1,68 +0,0 @@ -// eslint-disable-next-line import/no-extraneous-dependencies -import m from 'mithril'; - -export default class WrapStory { - constructor(vnode) { - this.knobChanged = this.knobChanged.bind(this); - this.knobClicked = this.knobClicked.bind(this); - this.resetKnobs = this.resetKnobs.bind(this); - this.setPaneKnobs = this.setPaneKnobs.bind(this); - this.props = vnode.attrs; - this.storyContent = vnode.attrs.initialContent; - } - - oncreate() { - // Watch for changes in knob editor. - this.props.channel.on('addon:knobs:knobChange', this.knobChanged); - // Watch for clicks in knob editor. - this.props.channel.on('addon:knobs:knobClick', this.knobClicked); - // Watch for the reset event and reset knobs. - this.props.channel.on('addon:knobs:reset', this.resetKnobs); - // Watch for any change in the knobStore and set the panel again for those - // changes. - this.props.knobStore.subscribe(this.setPaneKnobs); - // Set knobs in the panel for the first time. - this.setPaneKnobs(); - } - - onremove() { - this.props.channel.removeListener('addon:knobs:knobChange', this.knobChanged); - this.props.channel.removeListener('addon:knobs:knobClick', this.knobClicked); - this.props.channel.removeListener('addon:knobs:reset', this.resetKnobs); - this.props.knobStore.unsubscribe(this.setPaneKnobs); - } - - setPaneKnobs(timestamp = +new Date()) { - const { channel, knobStore } = this.props; - channel.emit('addon:knobs:setKnobs', { knobs: knobStore.getAll(), timestamp }); - } - - knobChanged(change) { - const { name, value } = change; - const { knobStore, storyFn, context } = this.props; - // Update the related knob and it's value. - const knobOptions = knobStore.get(name); - - knobOptions.value = value; - knobStore.markAllUnused(); - this.storyContent = storyFn(context); - m.redraw(); - } - - knobClicked(clicked) { - const knobOptions = this.props.knobStore.get(clicked.name); - knobOptions.callback(); - } - - resetKnobs() { - const { knobStore, storyFn, context } = this.props; - knobStore.reset(); - this.storyContent = storyFn(context); - m.redraw(); - this.setPaneKnobs(false); - } - - view() { - return m(this.storyContent); - } -} diff --git a/addons/knobs/src/mithril/index.js b/addons/knobs/src/mithril/index.js deleted file mode 100644 index 216049d1694..00000000000 --- a/addons/knobs/src/mithril/index.js +++ /dev/null @@ -1,33 +0,0 @@ -/** @jsx m */ - -// eslint-disable-next-line import/no-extraneous-dependencies -import m from 'mithril'; - -import WrapStory from './WrapStory'; - -import { - knob, - text, - boolean, - number, - color, - object, - array, - date, - select, - selectV2, - button, - makeDecorators, -} from '../base'; - -export { knob, text, boolean, number, color, object, array, date, select, selectV2, button }; - -export const mithrilHandler = (channel, knobStore) => getStory => context => { - const initialContent = getStory(context); - const props = { context, storyFn: getStory, channel, knobStore, initialContent }; - return { - view: () => , - }; -}; - -export const { withKnobs, withKnobsOptions } = makeDecorators(mithrilHandler); diff --git a/addons/knobs/src/polymer/WrapStory.html b/addons/knobs/src/polymer/WrapStory.html deleted file mode 100644 index 60bf2e35a6f..00000000000 --- a/addons/knobs/src/polymer/WrapStory.html +++ /dev/null @@ -1,94 +0,0 @@ - - - diff --git a/addons/knobs/src/polymer/index.js b/addons/knobs/src/polymer/index.js deleted file mode 100644 index 32df8b36a67..00000000000 --- a/addons/knobs/src/polymer/index.js +++ /dev/null @@ -1,33 +0,0 @@ -import window from 'global'; -import './WrapStory.html'; - -import { - knob, - text, - boolean, - number, - color, - object, - array, - date, - select, - files, - manager, - makeDecorators, -} from '../base'; - -export { knob, text, boolean, number, color, object, array, date, select, files }; - -export function button(name, callback) { - return manager.knob(name, { type: 'button', value: Date.now(), callback, hideLabel: true }); -} - -function prepareComponent({ getStory, context, channel, knobStore }) { - const WrapStory = window.customElements.get('wrap-story'); - return new WrapStory(getStory(context), channel, context, getStory, knobStore); -} - -export const polymerHandler = (channel, knobStore) => getStory => context => - prepareComponent({ getStory, context, channel, knobStore }); - -export const { withKnobs, withKnobsOptions } = makeDecorators(polymerHandler, { escapeHTML: true }); diff --git a/addons/knobs/src/react/WrapStory.js b/addons/knobs/src/react/WrapStory.js deleted file mode 100644 index 148ba186cd1..00000000000 --- a/addons/knobs/src/react/WrapStory.js +++ /dev/null @@ -1,109 +0,0 @@ -/* eslint no-underscore-dangle: 0 */ - -import PropTypes from 'prop-types'; -import React from 'react'; -import { polyfill } from 'react-lifecycles-compat'; - -class WrapStory extends React.Component { - constructor(props) { - super(props); - this.knobChanged = this.knobChanged.bind(this); - this.knobClicked = this.knobClicked.bind(this); - this.resetKnobs = this.resetKnobs.bind(this); - this.setPaneKnobs = this.setPaneKnobs.bind(this); - this._knobsAreReset = false; - this.state = {}; - } - - componentDidMount() { - // Watch for changes in knob editor. - this.props.channel.on('addon:knobs:knobChange', this.knobChanged); - // Watch for clicks in knob editor. - this.props.channel.on('addon:knobs:knobClick', this.knobClicked); - // Watch for the reset event and reset knobs. - this.props.channel.on('addon:knobs:reset', this.resetKnobs); - // Watch for any change in the knobStore and set the panel again for those - // changes. - this.props.knobStore.subscribe(this.setPaneKnobs); - // Set knobs in the panel for the first time. - this.setPaneKnobs(); - } - - componentWillUnmount() { - this.props.channel.removeListener('addon:knobs:knobChange', this.knobChanged); - this.props.channel.removeListener('addon:knobs:knobClick', this.knobClicked); - this.props.channel.removeListener('addon:knobs:reset', this.resetKnobs); - this.props.knobStore.unsubscribe(this.setPaneKnobs); - } - - setPaneKnobs(timestamp = +new Date()) { - const { channel, knobStore } = this.props; - channel.emit('addon:knobs:setKnobs', { knobs: knobStore.getAll(), timestamp }); - } - - knobChanged(change) { - const { name, value } = change; - const { knobStore, storyFn, context } = this.props; - // Update the related knob and it's value. - const knobOptions = knobStore.get(name); - - knobOptions.value = value; - knobStore.markAllUnused(); - this.setState({ storyContent: storyFn(context) }); - } - - knobClicked(clicked) { - const knobOptions = this.props.knobStore.get(clicked.name); - knobOptions.callback(); - } - - resetKnobs() { - const { knobStore, storyFn, context } = this.props; - knobStore.reset(); - this.setState({ storyContent: storyFn(context) }); - this.setPaneKnobs(false); - } - - render() { - return this.state.storyContent; - } -} - -WrapStory.getDerivedStateFromProps = ({ initialContent }, { prevContent }) => { - if (initialContent !== prevContent) { - return { - storyContent: initialContent, - prevContent: initialContent, - }; - } - return null; -}; - -WrapStory.defaultProps = { - context: {}, - initialContent: {}, - storyFn: context => context, -}; - -WrapStory.propTypes = { - context: PropTypes.object, // eslint-disable-line react/forbid-prop-types - storyFn: PropTypes.func, - channel: PropTypes.shape({ - on: PropTypes.func, - removeListener: PropTypes.func, - }).isRequired, - knobStore: PropTypes.shape({ - channel: PropTypes.func, - get: PropTypes.func, - getAll: PropTypes.func, - markAllUnused: PropTypes.func, - reset: PropTypes.func, - subscribe: PropTypes.func, - unsubscribe: PropTypes.func, - }).isRequired, - initialContent: PropTypes.node, // eslint-disable-line react/no-unused-prop-types -}; - -polyfill(WrapStory); - -export default WrapStory; diff --git a/addons/knobs/src/react/index.js b/addons/knobs/src/react/index.js deleted file mode 100644 index 10941149725..00000000000 --- a/addons/knobs/src/react/index.js +++ /dev/null @@ -1,29 +0,0 @@ -import React from 'react'; - -import WrapStory from './WrapStory'; - -import { - knob, - text, - boolean, - number, - color, - object, - array, - date, - select, - selectV2, - button, - files, - makeDecorators, -} from '../base'; - -export { knob, text, boolean, number, color, object, array, date, select, selectV2, button, files }; - -export const reactHandler = (channel, knobStore) => getStory => context => { - const initialContent = getStory(context); - const props = { context, storyFn: getStory, channel, knobStore, initialContent }; - return ; -}; - -export const { withKnobs, withKnobsOptions } = makeDecorators(reactHandler); diff --git a/addons/knobs/src/react/index.test.js b/addons/knobs/src/react/index.test.js deleted file mode 100644 index 75b1a08e47f..00000000000 --- a/addons/knobs/src/react/index.test.js +++ /dev/null @@ -1,27 +0,0 @@ -import React from 'react'; -import { reactHandler } from './index'; -import { shallow } from 'enzyme'; // eslint-disable-line -import KnobStore from '../KnobStore'; - -describe('React Handler', () => { - describe('wrapStory', () => { - it('should contain the story and add correct props', () => { - const testChannel = { emit: jest.fn(), on: jest.fn() }; - const testStory = () =>
Test Content
; - const testContext = { - kind: 'Foo', - story: 'bar baz', - }; - - const testStore = new KnobStore(); - - const wrappedStory = reactHandler(testChannel, testStore)(testStory)(testContext); - const wrapper = shallow(wrappedStory); - expect(wrapper.find('#test-story')).toHaveLength(1); - - const storyWrapperProps = wrappedStory.props; - expect(storyWrapperProps.channel).toEqual(testChannel); - expect(storyWrapperProps.context).toEqual(testContext); - }); - }); -}); diff --git a/addons/knobs/src/html/registerKnobs.js b/addons/knobs/src/registerKnobs.js similarity index 92% rename from addons/knobs/src/html/registerKnobs.js rename to addons/knobs/src/registerKnobs.js index b654e0fe4bf..bffd55bb051 100644 --- a/addons/knobs/src/html/registerKnobs.js +++ b/addons/knobs/src/registerKnobs.js @@ -1,7 +1,8 @@ import addons from '@storybook/addons'; import Events from '@storybook/core-events'; -import { manager } from '../base'; +import KnobManager from './KnobManager'; +export const manager = new KnobManager(); const { knobStore } = manager; function forceReRender() { @@ -57,8 +58,6 @@ function connectCallbacks() { return disconnectCallbacks; } -function registerKnobs() { +export function registerKnobs() { addons.getChannel().emit(Events.REGISTER_SUBSCRIPTION, connectCallbacks); } - -export default registerKnobs; diff --git a/addons/knobs/src/vue/index.js b/addons/knobs/src/vue/index.js deleted file mode 100644 index df0049eee27..00000000000 --- a/addons/knobs/src/vue/index.js +++ /dev/null @@ -1,75 +0,0 @@ -import { - knob, - text, - boolean, - number, - color, - object, - array, - date, - select, - selectV2, - button, - files, - makeDecorators, -} from '../base'; - -export { knob, text, boolean, number, color, object, array, date, select, selectV2, button, files }; - -export const vueHandler = (channel, knobStore) => getStory => context => ({ - data() { - return { - context, - getStory, - story: getStory(context), - }; - }, - - render(h) { - return h(this.story); - }, - - methods: { - onKnobChange(change) { - const { name, value } = change; - // Update the related knob and it's value. - const knobOptions = knobStore.get(name); - - knobOptions.value = value; - this.story = this.getStory(this.context); - this.$forceUpdate(); - }, - - onKnobClick(clicked) { - const knobOptions = knobStore.get(clicked.name); - knobOptions.callback(); - }, - - onKnobReset() { - knobStore.reset(); - this.setPaneKnobs(false); - this.story = this.getStory(this.context); - this.$forceUpdate(); - }, - - setPaneKnobs(timestamp = +new Date()) { - channel.emit('addon:knobs:setKnobs', { knobs: knobStore.getAll(), timestamp }); - }, - }, - - created() { - channel.on('addon:knobs:reset', this.onKnobReset); - channel.on('addon:knobs:knobChange', this.onKnobChange); - channel.on('addon:knobs:knobClick', this.onKnobClick); - knobStore.subscribe(this.setPaneKnobs); - }, - - beforeDestroy() { - channel.removeListener('addon:knobs:reset', this.onKnobReset); - channel.removeListener('addon:knobs:knobChange', this.onKnobChange); - channel.removeListener('addon:knobs:knobClick', this.onKnobClick); - knobStore.unsubscribe(this.setPaneKnobs); - }, -}); - -export const { withKnobs, withKnobsOptions } = makeDecorators(vueHandler, { escapeHTML: true }); diff --git a/addons/knobs/src/vue/index.test.js b/addons/knobs/src/vue/index.test.js deleted file mode 100644 index 9e2b4ca7a3d..00000000000 --- a/addons/knobs/src/vue/index.test.js +++ /dev/null @@ -1,40 +0,0 @@ -import Vue from 'vue'; -import { vueHandler } from './index'; -import KnobStore from '../KnobStore'; - -describe('Vue handler', () => { - it('Returns a component with a created function', () => { - const testChannel = { emit: jest.fn(), on: jest.fn() }; - const testStory = () => ({ template: '
testStory
' }); - const testContext = { - kind: 'Foo', - story: 'bar baz', - }; - - const testStore = new KnobStore(); - const component = vueHandler(testChannel, testStore)(testStory)(testContext); - - expect(component).toMatchObject({ - created: expect.any(Function), - beforeDestroy: expect.any(Function), - render: expect.any(Function), - }); - }); - - it('Subscribes to the channel on creation', () => { - const testChannel = { emit: () => {}, on: jest.fn() }; - const testStory = () => ({ render: h => h('div', ['testStory']) }); - const testContext = { - kind: 'Foo', - story: 'bar baz', - }; - - const testStore = new KnobStore(); - new Vue(vueHandler(testChannel, testStore)(testStory)(testContext)).$mount(); - - expect(testChannel.on).toHaveBeenCalledTimes(3); - expect(testChannel.on).toHaveBeenCalledWith('addon:knobs:reset', expect.any(Function)); - expect(testChannel.on).toHaveBeenCalledWith('addon:knobs:knobChange', expect.any(Function)); - expect(testChannel.on).toHaveBeenCalledWith('addon:knobs:knobClick', expect.any(Function)); - }); -}); diff --git a/addons/knobs/vue.js b/addons/knobs/vue.js index 42311b17563..c22c26b6732 100644 --- a/addons/knobs/vue.js +++ b/addons/knobs/vue.js @@ -1 +1 @@ -module.exports = require('./dist/vue'); +module.exports = require('./dist/deprecated'); diff --git a/app/polymer/src/client/preview/render.js b/app/polymer/src/client/preview/render.js index 6ed2e5a9bce..6fbbe908c21 100644 --- a/app/polymer/src/client/preview/render.js +++ b/app/polymer/src/client/preview/render.js @@ -4,7 +4,14 @@ import { html, render, TemplateResult } from 'lit-html'; const rootElement = document.getElementById('root'); -export default function renderMain({ story, selectedKind, selectedStory, showMain, showError }) { +export default function renderMain({ + story, + selectedKind, + selectedStory, + showMain, + showError, + forceRender, +}) { const component = story(); if (!component) { @@ -24,7 +31,10 @@ export default function renderMain({ story, selectedKind, selectedStory, showMai } else if (component instanceof TemplateResult) { // `render` stores the TemplateInstance in the Node and tries to update based on that. // Since we reuse `rootElement` for all stories, remove the stored instance first. - render(html``, rootElement); + // But forceRender means that it's the same story, so we want too keep the state in that case. + if (!forceRender) { + render(html``, rootElement); + } render(component, rootElement); } else { rootElement.innerHTML = ''; diff --git a/app/react/src/client/preview/render.js b/app/react/src/client/preview/render.js index 2094cc207b9..507e5868563 100644 --- a/app/react/src/client/preview/render.js +++ b/app/react/src/client/preview/render.js @@ -13,7 +13,14 @@ function render(node, el) { ); } -export default function renderMain({ story, selectedKind, selectedStory, showMain, showError }) { +export default function renderMain({ + story, + selectedKind, + selectedStory, + showMain, + showError, + forceRender, +}) { const element = story(); if (!element) { @@ -42,7 +49,10 @@ export default function renderMain({ story, selectedKind, selectedStory, showMai // Otherwise, React may not recrease instances for every story run. // This could leads to issues like below: // https://github.com/storybooks/react-storybook/issues/81 - ReactDOM.unmountComponentAtNode(rootEl); + // But forceRender means that it's the same story, so we want too keep the state in that case. + if (!forceRender) { + ReactDOM.unmountComponentAtNode(rootEl); + } showMain(); render(element, rootEl); } diff --git a/docs/src/pages/basics/quick-start-guide/index.md b/docs/src/pages/basics/quick-start-guide/index.md index 68f4b11f10a..52d0b49c8d4 100644 --- a/docs/src/pages/basics/quick-start-guide/index.md +++ b/docs/src/pages/basics/quick-start-guide/index.md @@ -29,11 +29,12 @@ Then you can access your storybook from the browser. * * * To learn more about what `getstorybook` command does, have a look at our slow start guides: - * [React](/basics/guide-react/) - * [Vue](/basics/guide-vue/) - * [Angular](/basics/guide-angular/) - * [Mithril](/basics/guide-mithril/) - * [HTML](/basics/guide-html/) +* [React](/basics/guide-react/) +* [Vue](/basics/guide-vue/) +* [Angular](/basics/guide-angular/) +* [Mithril](/basics/guide-mithril/) +* [Marko](/basics/guide-marko/) +* [HTML](/basics/guide-html/) If you prefer a guided tutorial to reading docs, head to [Learn Storybook](https://www.learnstorybook.com) for a step-by-step guide (currently React-only). diff --git a/examples/angular-cli/addon-jest.testresults.json b/examples/angular-cli/addon-jest.testresults.json index 62fbfd2c65c..08bff9cecba 100644 --- a/examples/angular-cli/addon-jest.testresults.json +++ b/examples/angular-cli/addon-jest.testresults.json @@ -1 +1 @@ -{"numFailedTestSuites":0,"numFailedTests":0,"numPassedTestSuites":1,"numPassedTests":3,"numPendingTestSuites":0,"numPendingTests":0,"numRuntimeErrorTestSuites":0,"numTotalTestSuites":1,"numTotalTests":3,"snapshot":{"added":0,"didUpdate":false,"failure":false,"filesAdded":0,"filesRemoved":0,"filesUnmatched":0,"filesUpdated":0,"matched":0,"total":0,"unchecked":0,"uncheckedKeys":[],"unmatched":0,"updated":0},"startTime":1525677901357,"success":true,"testResults":[{"assertionResults":[{"ancestorTitles":["AppComponent"],"failureMessages":[],"fullName":"AppComponent should create the app","location":null,"status":"passed","title":"should create the app"},{"ancestorTitles":["AppComponent"],"failureMessages":[],"fullName":"AppComponent should have as title 'app'","location":null,"status":"passed","title":"should have as title 'app'"},{"ancestorTitles":["AppComponent"],"failureMessages":[],"fullName":"AppComponent should render title in a h1 tag","location":null,"status":"passed","title":"should render title in a h1 tag"}],"endTime":1525677905915,"message":"","name":"C:\\tmp\\storybook\\examples\\angular-cli\\src\\app\\app.component.spec.ts","startTime":1525677902829,"status":"passed","summary":""}],"wasInterrupted":false} \ No newline at end of file +{"numFailedTestSuites":0,"numFailedTests":0,"numPassedTestSuites":2,"numPassedTests":6,"numPendingTestSuites":0,"numPendingTests":0,"numRuntimeErrorTestSuites":0,"numTotalTestSuites":2,"numTotalTests":6,"snapshot":{"added":0,"didUpdate":false,"failure":false,"filesAdded":0,"filesRemoved":0,"filesUnmatched":0,"filesUpdated":0,"matched":0,"total":0,"unchecked":0,"uncheckedKeys":[],"unmatched":0,"updated":0},"startTime":1525873343397,"success":true,"testResults":[{"assertionResults":[{"ancestorTitles":["AppComponent"],"failureMessages":[],"fullName":"AppComponent should create the app","location":null,"status":"passed","title":"should create the app"},{"ancestorTitles":["AppComponent"],"failureMessages":[],"fullName":"AppComponent should have as title 'app'","location":null,"status":"passed","title":"should have as title 'app'"},{"ancestorTitles":["AppComponent"],"failureMessages":[],"fullName":"AppComponent should render title in a h1 tag","location":null,"status":"passed","title":"should render title in a h1 tag"}],"endTime":1525873348302,"message":"","name":"/Users/jetbrains/IdeaProjects/storybook/examples/angular-cli/dist/app/app.component.spec.ts","startTime":1525873345081,"status":"passed","summary":""},{"assertionResults":[{"ancestorTitles":["AppComponent"],"failureMessages":[],"fullName":"AppComponent should create the app","location":null,"status":"passed","title":"should create the app"},{"ancestorTitles":["AppComponent"],"failureMessages":[],"fullName":"AppComponent should have as title 'app'","location":null,"status":"passed","title":"should have as title 'app'"},{"ancestorTitles":["AppComponent"],"failureMessages":[],"fullName":"AppComponent should render title in a h1 tag","location":null,"status":"passed","title":"should render title in a h1 tag"}],"endTime":1525873348352,"message":"","name":"/Users/jetbrains/IdeaProjects/storybook/examples/angular-cli/src/app/app.component.spec.ts","startTime":1525873345086,"status":"passed","summary":""}],"wasInterrupted":false} \ No newline at end of file diff --git a/examples/angular-cli/src/stories/__snapshots__/addon-knobs.stories.storyshot b/examples/angular-cli/src/stories/__snapshots__/addon-knobs.stories.storyshot index 7b714f4052b..e6705c07ae8 100644 --- a/examples/angular-cli/src/stories/__snapshots__/addon-knobs.stories.storyshot +++ b/examples/angular-cli/src/stories/__snapshots__/addon-knobs.stories.storyshot @@ -27,7 +27,7 @@ exports[`Storyshots Addon|Knobs All knobs 1`] = `

- I have a stock of 20 apple, costing $ 2.25 each. + I have a stock of 20 apples, costing $ 2.25 each.

diff --git a/examples/angular-cli/src/stories/__snapshots__/custom-styles.stories.storyshot b/examples/angular-cli/src/stories/__snapshots__/custom-styles.stories.storyshot index 9999b7af602..cdf3c67078c 100644 --- a/examples/angular-cli/src/stories/__snapshots__/custom-styles.stories.storyshot +++ b/examples/angular-cli/src/stories/__snapshots__/custom-styles.stories.storyshot @@ -31,18 +31,15 @@ exports[`Storyshots Custom|Style With Knobs 1`] = ` data={[Function Object]} target={[Function ViewContainerRef_]} > - + diff --git a/examples/angular-cli/src/stories/addon-knobs.stories.ts b/examples/angular-cli/src/stories/addon-knobs.stories.ts index ff4a661486f..ea71f6d90c5 100644 --- a/examples/angular-cli/src/stories/addon-knobs.stories.ts +++ b/examples/angular-cli/src/stories/addon-knobs.stories.ts @@ -11,7 +11,7 @@ import { color, date, button, -} from '@storybook/addon-knobs/angular'; +} from '@storybook/addon-knobs'; import { SimpleKnobsComponent } from './knobs.component'; import { AllKnobsComponent } from './all-knobs.component'; @@ -53,11 +53,11 @@ storiesOf('Addon|Knobs', module) step: 5, }); const fruits = { - apples: 'Apple', - bananas: 'Banana', - cherries: 'Cherry', + Apple: 'apples', + Banana: 'bananas', + Cherry: 'cherries', }; - const fruit = select('fruit', fruits, 'apple'); + const fruit = select('fruit', fruits, 'apples'); const price = number('price', 2.25); const border = color('border', 'deeppink'); diff --git a/examples/html-kitchen-sink/stories/__snapshots__/addon-knobs.stories.storyshot b/examples/html-kitchen-sink/stories/__snapshots__/addon-knobs.stories.storyshot index 73f9636e4b1..1517b1b7084 100644 --- a/examples/html-kitchen-sink/stories/__snapshots__/addon-knobs.stories.storyshot +++ b/examples/html-kitchen-sink/stories/__snapshots__/addon-knobs.stories.storyshot @@ -17,7 +17,7 @@ exports[`Storyshots Addons|Knobs All knobs 1`] = `

- I have a stock of 20 apple, costing $2.25 each. + I have a stock of 20 apples, costing $2.25 each.

@@ -52,3 +52,5 @@ exports[`Storyshots Addons|Knobs Simple 1`] = ` I am John Doe and I'm 44 years old. `; + +exports[`Storyshots Addons|Knobs XSS safety 1`] = `<img src=x onerror="alert('XSS Attack')" >`; diff --git a/examples/html-kitchen-sink/stories/addon-knobs.stories.js b/examples/html-kitchen-sink/stories/addon-knobs.stories.js index 406ba3acf18..04fd7d9c3d3 100644 --- a/examples/html-kitchen-sink/stories/addon-knobs.stories.js +++ b/examples/html-kitchen-sink/stories/addon-knobs.stories.js @@ -11,7 +11,7 @@ import { withKnobs, text, number, -} from '@storybook/addon-knobs/html'; +} from '@storybook/addon-knobs'; storiesOf('Addons|Knobs', module) .addDecorator(withKnobs) @@ -31,11 +31,11 @@ storiesOf('Addons|Knobs', module) step: 5, }); const fruits = { - apples: 'Apple', - bananas: 'Banana', - cherries: 'Cherry', + Apple: 'apples', + Banana: 'bananas', + Cherry: 'cherries', }; - const fruit = select('Fruit', fruits, 'apple'); + const fruit = select('Fruit', fruits, 'apples'); const price = number('Price', 2.25); const colour = color('Border', 'deeppink'); @@ -63,4 +63,5 @@ storiesOf('Addons|Knobs', module)

${salutation}

`; - }); + }) + .add('XSS safety', () => text('Rendered string', '')); diff --git a/examples/marko-cli/package.json b/examples/marko-cli/package.json index 3083ee07011..056ac2e7c74 100644 --- a/examples/marko-cli/package.json +++ b/examples/marko-cli/package.json @@ -28,7 +28,7 @@ "scripts": { "start": "marko-starter server", "build-storybook": "build-storybook", - "storybook": "start-storybook -p 9010", + "storybook": "start-storybook -p 9005", "build": "NODE_ENV=production marko-starter build", "serve-static": "NODE_ENV=production marko-starter serve-static", "lint": "eslint src/", diff --git a/examples/marko-cli/src/stories/addon-actions.stories.js b/examples/marko-cli/src/stories/addon-actions.stories.js index ec3aa83f09a..73d25b05d3f 100644 --- a/examples/marko-cli/src/stories/addon-actions.stories.js +++ b/examples/marko-cli/src/stories/addon-actions.stories.js @@ -2,6 +2,6 @@ import { storiesOf } from '@storybook/marko'; import { action } from '@storybook/addon-actions'; import Button from '../components/action-button/index.marko'; -storiesOf('Addons|Actions/Button').add('Simple', () => +storiesOf('Addons|Actions/Button', module).add('Simple', () => Button.renderSync({ click: action('action logged!') }) ); diff --git a/examples/marko-cli/src/stories/addon-knobs.stories.js b/examples/marko-cli/src/stories/addon-knobs.stories.js index 35287848196..74b6898dbb4 100644 --- a/examples/marko-cli/src/stories/addon-knobs.stories.js +++ b/examples/marko-cli/src/stories/addon-knobs.stories.js @@ -1,5 +1,5 @@ import { storiesOf } from '@storybook/marko'; -import { withKnobs, text, number } from '@storybook/addon-knobs/marko'; +import { withKnobs, text, number } from '@storybook/addon-knobs'; import Hello from '../components/hello/index.marko'; storiesOf('Addons|Knobs/Hello', module) diff --git a/examples/mithril-kitchen-sink/src/stories/addon-knobs.stories.js b/examples/mithril-kitchen-sink/src/stories/addon-knobs.stories.js index d518f313e54..cd9836b357c 100644 --- a/examples/mithril-kitchen-sink/src/stories/addon-knobs.stories.js +++ b/examples/mithril-kitchen-sink/src/stories/addon-knobs.stories.js @@ -14,7 +14,7 @@ import { color, date, button, -} from '@storybook/addon-knobs/mithril'; +} from '@storybook/addon-knobs'; storiesOf('Addons|Knobs', module) .addDecorator(withKnobs) @@ -36,11 +36,11 @@ storiesOf('Addons|Knobs', module) step: 5, }); const fruits = { - apples: 'Apple', - bananas: 'Banana', - cherries: 'Cherry', + Apple: 'apples', + Banana: 'bananas', + Cherry: 'cherries', }; - const fruit = select('Fruit', fruits, 'apple'); + const fruit = select('Fruit', fruits, 'apples'); const price = number('Price', 2.25); const colour = color('Border', 'deeppink'); @@ -63,7 +63,7 @@ storiesOf('Addons|Knobs', module)

today is {new Date(today).toLocaleDateString('en-US', dateOptions)}

{stockMessage}

Also, I have:

-
    {items.map(item => `
  • ${item}
  • `).join('')}
+
    {items.map(item =>
  • {item}
  • )}

{salutation}

), diff --git a/examples/official-storybook/stories/__snapshots__/addon-knobs.stories.storyshot b/examples/official-storybook/stories/__snapshots__/addon-knobs.stories.storyshot index 1facf226a0c..4ac266e2867 100644 --- a/examples/official-storybook/stories/__snapshots__/addon-knobs.stories.storyshot +++ b/examples/official-storybook/stories/__snapshots__/addon-knobs.stories.storyshot @@ -2,7 +2,7 @@ exports[`Storyshots Addons|Knobs.withKnobs XSS safety 1`] = `
- <img src=x onerror="alert('XSS Attack')" > + <img src=x onerror="alert('XSS Attack')" >
`; @@ -33,7 +33,7 @@ exports[`Storyshots Addons|Knobs.withKnobs tweaks static values 1`] = ` style="background-color:#ffff00;border:3px solid #ff00ff;padding:10px" >

- My name is Storyteller, I'm 70 years old, and my favorite fruit is apple. I also enjoy lime. + My name is Storyteller, I'm 70 years old, and my favorite fruit is apple.

My birthday is: January 20, 2017 @@ -107,9 +107,6 @@ exports[`Storyshots Addons|Knobs.withKnobs tweaks static values organized in gro

Fruit: apple

-

- Second Fruit: lime -

Items:

@@ -127,60 +124,8 @@ exports[`Storyshots Addons|Knobs.withKnobs tweaks static values organized in gro `; -exports[`Storyshots Addons|Knobs.withKnobsOptions triggers actions via button with debounce delay 1`] = ` +exports[`Storyshots Addons|Knobs.withKnobsOptions displays HTML code 1`] = `
-

- Hit the knob load button and it should trigger an async load after a short delay -

-

- No items loaded -

-
-`; - -exports[`Storyshots Addons|Knobs.withKnobsOptions tweaks static values with debounce delay 1`] = ` -
-

- If you are encountering performance issues with state updating too often, use withKnobsOptions to debounce changes. -

-

- My name is Storyteller, I'm 70 years old, and my favorite fruit is apple. I also enjoy lime. -

-

- My birthday is: January 20, 2017 -

-

- My wallet contains: $12.50 -

-

- In my backpack, I have: -

-
    -
  • - Laptop -
  • -
  • - Book -
  • -
  • - Whiskey -
  • -
-

- Nice to meet you! -

-

- When I am happy I look like this: - happy -

-
-

- PS. My shirt pocket contains: -

+ <h1>Hello</h1>
`; diff --git a/examples/official-storybook/stories/addon-knobs.stories.js b/examples/official-storybook/stories/addon-knobs.stories.js index 3406b640720..40fa2a7865a 100644 --- a/examples/official-storybook/stories/addon-knobs.stories.js +++ b/examples/official-storybook/stories/addon-knobs.stories.js @@ -9,13 +9,12 @@ import { boolean, color, select, - selectV2, array, date, button, object, files, -} from '@storybook/addon-knobs/react'; +} from '@storybook/addon-knobs'; class AsyncItemLoader extends React.Component { constructor() { @@ -53,17 +52,11 @@ storiesOf('Addons|Knobs.withKnobs', module) const name = text('Name', 'Storyteller'); const age = number('Age', 70, { range: true, min: 0, max: 90, step: 5 }); const fruits = { - apple: 'Apple', - banana: 'Banana', - cherry: 'Cherry', + Apple: 'apple', + Banana: 'banana', + Cherry: 'cherry', }; const fruit = select('Fruit', fruits, 'apple'); - const otherFruits = { - Lime: 'lime', - Coconut: 'coconut', - Tomato: 'tomato', - }; - const otherFruit = selectV2('Other Fruit', otherFruits, 'lime'); const dollars = number('Dollars', 12.5, { min: 0, max: 100, step: 0.01 }); const years = number('Years in NY', 9); @@ -82,7 +75,7 @@ storiesOf('Addons|Knobs.withKnobs', module) const defaultBirthday = new Date('Jan 20 2017 GMT+0'); const birthday = date('Birthday', defaultBirthday); - const intro = `My name is ${name}, I'm ${age} years old, and my favorite fruit is ${fruit}. I also enjoy ${otherFruit}.`; + const intro = `My name is ${name}, I'm ${age} years old, and my favorite fruit is ${fruit}.`; const style = { backgroundColor, ...otherStyles }; const salutation = nice ? 'Nice to meet you!' : 'Leave me alone!'; const dateOptions = { year: 'numeric', month: 'long', day: 'numeric', timeZone: 'UTC' }; @@ -112,15 +105,9 @@ storiesOf('Addons|Knobs.withKnobs', module) }; const fruits = { - apple: 'Apple', - banana: 'Banana', - cherry: 'Cherry', - }; - - const otherFruits = { - Lime: 'lime', - Coconut: 'coconut', - Tomato: 'tomato', + Apple: 'apple', + Banana: 'banana', + Cherry: 'cherry', }; // NOTE: the default value must not change - e.g., do not do date('Label', new Date()) or date('Label') @@ -141,7 +128,6 @@ storiesOf('Addons|Knobs.withKnobs', module) // Favorites const nice = boolean('Nice', true, GROUP_IDS.FAVORITES); const fruit = select('Fruit', fruits, 'apple', GROUP_IDS.FAVORITES); - const otherFruit = selectV2('Other Fruit', otherFruits, 'lime', GROUP_IDS.FAVORITES); const items = array('Items', ['Laptop', 'Book', 'Whiskey'], ',', GROUP_IDS.FAVORITES); // Display @@ -169,7 +155,6 @@ storiesOf('Addons|Knobs.withKnobs', module)

Favorites

Catchphrase: {salutation}

Fruit: {fruit}

-

Second Fruit: {otherFruit}

Items:

    {items.map(item =>
  • {item}
  • )}
@@ -197,70 +182,7 @@ storiesOf('Addons|Knobs.withKnobs', module) storiesOf('Addons|Knobs.withKnobsOptions', module) .addDecorator( withKnobsOptions({ - debounce: { wait: 100, leading: boolean }, // Same as lodash debounce. - timestamps: true, // Doesn't emit events while user is typing. + escapeHTML: false, }) ) - .add('tweaks static values with debounce delay', () => { - const name = text('Name', 'Storyteller'); - const age = number('Age', 70, { range: true, min: 0, max: 90, step: 5 }); - const fruits = { - apple: 'Apple', - banana: 'Banana', - cherry: 'Cherry', - }; - const fruit = select('Fruit', fruits, 'apple'); - const otherFruits = { - Lime: 'lime', - Coconut: 'coconut', - Tomato: 'tomato', - }; - const otherFruit = selectV2('Other Fruit', otherFruits, 'lime'); - const dollars = number('Dollars', 12.5, { min: 0, max: 100, step: 0.01 }); - - const backgroundColor = color('background', '#ffff00'); - const items = array('Items', ['Laptop', 'Book', 'Whiskey']); - const otherStyles = object('Styles', { - border: '3px solid #ff00ff', - padding: '10px', - }); - const nice = boolean('Nice', true); - const images = files('Happy Picture', 'image/*', [ - 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAQAAAC1+jfqAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAAAHdElNRQfiARwMCyEWcOFPAAAAP0lEQVQoz8WQMQoAIAwDL/7/z3GwghSp4KDZyiUpBMCYUgd8rehtH16/l3XewgU2KAzapjXBbNFaPS6lDMlKB6OiDv3iAH1OAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE4LTAxLTI4VDEyOjExOjMzLTA3OjAwlAHQBgAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxOC0wMS0yOFQxMjoxMTozMy0wNzowMOVcaLoAAAAASUVORK5CYII=', - ]); - - // NOTE: the default value must not change - e.g., do not do date('Label', new Date()) or date('Label') - const defaultBirthday = new Date('Jan 20 2017 GMT+0'); - const birthday = date('Birthday', defaultBirthday); - - const intro = `My name is ${name}, I'm ${age} years old, and my favorite fruit is ${fruit}. I also enjoy ${otherFruit}.`; - const style = { backgroundColor, ...otherStyles }; - const salutation = nice ? 'Nice to meet you!' : 'Leave me alone!'; - const dateOptions = { year: 'numeric', month: 'long', day: 'numeric', timeZone: 'UTC' }; - - return ( -
-

- If you are encountering performance issues with state updating too often, use - withKnobsOptions to debounce changes. -

-

{intro}

-

My birthday is: {new Date(birthday).toLocaleDateString('en-US', dateOptions)}

-

My wallet contains: ${dollars.toFixed(2)}

-

In my backpack, I have:

-
    {items.map(item =>
  • {item}
  • )}
-

{salutation}

-

- When I am happy I look like this: happy -

-
-

PS. My shirt pocket contains:

-
- ); - }) - .add('triggers actions via button with debounce delay', () => ( -
-

Hit the knob load button and it should trigger an async load after a short delay

- -
- )); + .add('displays HTML code', () =>
{text('Rendered string', '

Hello

')}
); diff --git a/examples/polymer-cli/src/stories/addon-knobs.stories.js b/examples/polymer-cli/src/stories/addon-knobs.stories.js index b1bfd8dff47..8015a235ff6 100644 --- a/examples/polymer-cli/src/stories/addon-knobs.stories.js +++ b/examples/polymer-cli/src/stories/addon-knobs.stories.js @@ -13,7 +13,7 @@ import { color, array, boolean, -} from '@storybook/addon-knobs/polymer'; +} from '@storybook/addon-knobs'; storiesOf('Addon|Knobs', module) .addDecorator(withKnobs) @@ -31,8 +31,12 @@ storiesOf('Addon|Knobs', module) .add('complex', () => { const name = text('Name', 'Jane'); const stock = number('Stock', 20, { range: true, min: 0, max: 30, step: 5 }); - const fruits = { apples: 'Apple', bananas: 'Banana', cherries: 'Cherry' }; - const fruit = select('Fruit', fruits, 'apple'); + const fruits = { + Apple: 'apples', + Banana: 'bananas', + Cherry: 'cherries', + }; + const fruit = select('Fruit', fruits, 'apples'); const price = number('Price', 2.25); const colour = color('Border', 'deeppink'); const today = date('Today', new Date('Jan 20 2017 GMT+0')); diff --git a/examples/vue-kitchen-sink/src/stories/__snapshots__/addon-knobs.stories.storyshot b/examples/vue-kitchen-sink/src/stories/__snapshots__/addon-knobs.stories.storyshot index f54e6f19d0e..13bf0ff02a6 100644 --- a/examples/vue-kitchen-sink/src/stories/__snapshots__/addon-knobs.stories.storyshot +++ b/examples/vue-kitchen-sink/src/stories/__snapshots__/addon-knobs.stories.storyshot @@ -13,7 +13,7 @@ exports[`Storyshots Addon|Knobs All knobs 1`] = `

- I have a stock of 20 apple, costing $2.25 each. + I have a stock of 20 apples, costing $2.25 each.

diff --git a/examples/vue-kitchen-sink/src/stories/addon-knobs.stories.js b/examples/vue-kitchen-sink/src/stories/addon-knobs.stories.js index 26015c311b7..cf8a0a7d74e 100644 --- a/examples/vue-kitchen-sink/src/stories/addon-knobs.stories.js +++ b/examples/vue-kitchen-sink/src/stories/addon-knobs.stories.js @@ -10,7 +10,7 @@ import { color, date, button, -} from '@storybook/addon-knobs/vue'; +} from '@storybook/addon-knobs'; storiesOf('Addon|Knobs', module) .addDecorator(withKnobs) @@ -32,11 +32,11 @@ storiesOf('Addon|Knobs', module) step: 5, }); const fruits = { - apples: 'Apple', - bananas: 'Banana', - cherries: 'Cherry', + Apple: 'apples', + Banana: 'bananas', + Cherry: 'cherries', }; - const fruit = select('Fruit', fruits, 'apple'); + const fruit = select('Fruit', fruits, 'apples'); const price = number('Price', 2.25); const colour = color('Border', 'deeppink'); diff --git a/lib/core/src/client/preview/start.js b/lib/core/src/client/preview/start.js index cf34147fdb1..b435f84b29e 100644 --- a/lib/core/src/client/preview/start.js +++ b/lib/core/src/client/preview/start.js @@ -153,6 +153,7 @@ export default function start(render, { decorateStory } = {}) { story, selectedKind, selectedStory, + forceRender, }); }; From 3135cc20d32d5d5e1ac9a6ebace2f52f218d5be5 Mon Sep 17 00:00:00 2001 From: George Y Date: Thu, 10 May 2018 16:12:50 +0300 Subject: [PATCH 009/143] remove nested braces in Story Source block --- .../info/src/__snapshots__/index.test.js.snap | 126 +- addons/info/src/components/PropVal.js | 5 +- addons/info/src/components/Props.js | 1 + .../__snapshots__/index.stories.storyshot | 152 +- .../addon-info.stories.storyshot | 2216 +++++++---------- 5 files changed, 1047 insertions(+), 1453 deletions(-) diff --git a/addons/info/src/__snapshots__/index.test.js.snap b/addons/info/src/__snapshots__/index.test.js.snap index d0c6c3e270b..7c91ed5dddb 100644 --- a/addons/info/src/__snapshots__/index.test.js.snap +++ b/addons/info/src/__snapshots__/index.test.js.snap @@ -701,6 +701,7 @@ exports[`addon Info should render and external markdown 1`] = ` style={Object {}} > and external markdown 1`] = ` val={[Function]} > and external markdown 1`] = ` style={Object {}} > and external markdown 1`] = ` } > and external markdown 1`] = ` : and external markdown 1`] = ` : and external markdown 1`] = ` style={Object {}} > and external markdown 1`] = ` } > and external markdown 1`] = ` key="n0/.0" > and external markdown 1`] = ` } } > - - { - - 1 - } + > + 1 @@ -1389,6 +1394,7 @@ exports[`addon Info should render and external markdown 1`] = ` key="n1/.0" > and external markdown 1`] = ` } } > - - { - - 2 - } + > + 2 @@ -1446,6 +1448,7 @@ exports[`addon Info should render and external markdown 1`] = ` key="n2/.0" > and external markdown 1`] = ` } } > - - { - - 3 - } + > + 3 @@ -1526,6 +1525,7 @@ exports[`addon Info should render and external markdown 1`] = ` style={Object {}} > and external markdown 1`] = ` val={7} > and external markdown 1`] = ` > " and external markdown 1`] = ` val="seven" > : : - - { - - 1 - } + > + 1 @@ -3508,6 +3516,7 @@ containing **bold**, *cursive* text, \`code\` and [a link](https://github.com)" key="n1/.0" > - - { - - 2 - } + > + 2 @@ -3565,6 +3570,7 @@ containing **bold**, *cursive* text, \`code\` and [a link](https://github.com)" key="n2/.0" > - - { - - 3 - } + > + 3 @@ -3645,6 +3647,7 @@ containing **bold**, *cursive* text, \`code\` and [a link](https://github.com)" style={Object {}} > " {typeof nodeProps[name] === 'string' && '"'} diff --git a/examples/cra-kitchen-sink/src/stories/__snapshots__/index.stories.storyshot b/examples/cra-kitchen-sink/src/stories/__snapshots__/index.stories.storyshot index fb055e9e3c5..ff696128b0b 100644 --- a/examples/cra-kitchen-sink/src/stories/__snapshots__/index.stories.storyshot +++ b/examples/cra-kitchen-sink/src/stories/__snapshots__/index.stories.storyshot @@ -491,14 +491,10 @@ exports[`Storyshots Button with new info 1`] = ` - - { - - false - - } + + false - + { + + + isOld + + + : - { - - - isOld - + false + + , + + + value - : - - { - - false - - } - - , - - - value - - - : - - { - - 0 - - } - - } + + : + + 0 } @@ -907,14 +891,10 @@ exports[`Storyshots Button with some info 1`] = ` - - { - - false - - } + + false - + { + + + isOld + + + : - { - - - isOld - + false + + , + + + value - : - - { - - false - - } - - , - - - value - - - : - - { - - 0 - - } - - } + + : + + 0 } diff --git a/examples/official-storybook/stories/__snapshots__/addon-info.stories.storyshot b/examples/official-storybook/stories/__snapshots__/addon-info.stories.storyshot index 7b974119c70..0dfcd81abda 100644 --- a/examples/official-storybook/stories/__snapshots__/addon-info.stories.storyshot +++ b/examples/official-storybook/stories/__snapshots__/addon-info.stories.storyshot @@ -179,14 +179,10 @@ exports[`Storyshots Addons|Info.Decorator Use Info as story decorator 1`] = ` - - { - - false - - } + + false - - { - - onClick() - - } + + onClick() - - { - - {} - - } + + {} - - { - - false - - } + + false - - { - - onClick() - - } + + onClick() - - { - - {} - - } + + {} - - { - - false - - } + + false - - { - - onClick() - - } + + onClick() - - { - - {} - - } + + {} - - { - - false - - } + + false - - { - - onClick() - - } + + onClick() - - { - - {} - - } + + {} - - { - - false - - } + + false - - { - - onClick() - - } + + onClick() - - { - - {} - - } + + {} - - { - - false - - } + + false - - { - - onClick() - - } + + onClick() - - { - - {} - - } + + {} - - { - - false - - } + + false - - { - - onClick() - - } + + onClick() - - { - - {} - - } + + {} - - { - - false - - } + + false - - { - - onClick() - - } + + onClick() - - { - - {} - - } + + {} - + { + + +
+ +
+ + one + +
+ : + + Object and array properties will be broken to diff… + + , + + +
+ +
+ + two + +
+ : + + if greater than \`maxPropsIntoLine\` option threshol… + + , + + +
+ +
+ + object + +
+ : @@ -3062,53 +3016,165 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array
- +
+ object1 + +
+ : + + { + + +
+ +
+ + one + +
+ : + one -
- : - - Object and array properties will be broken to diff… - - , - + , -
- + +
+ +
+ + two +
+ : two -
- : - - if greater than \`maxPropsIntoLine\` option threshol… + , + + +
+ +
+ + three + +
+ : + + three + + +
+ +
+ }
,
- +
- object + array
: + + [ + + +
+ +
+ + one + +
+ , + + +
+ +
+ + two + +
+ , + + +
+ +
+ + three + +
+ +
+ +
+ ] +
+ , + +
+ +
+ + object2 + +
+ : + { + + +
+ +
+ + object + +
+ : @@ -3116,17 +3182,108 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array
- +
- object1 + one
: + + one + + , - { + +
+ +
+ + two + +
+ : + + two + + , + + +
+ +
+ + three + +
+ : + + three + + +
+ +
+ } +
+ , + + +
+ +
+ + array + +
+ : + + [ + + +
+ +
+ + one + +
+ , + + +
+ +
+ + two + +
+ , + + +
+ +
@@ -3134,149 +3291,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array
- -
- - one - -
- : - - one - - , - - -
- -
- - two - -
- : - - two - - , - - -
- -
- - three - -
- : - - three - - -
- -
- } -
- } -
- , - - -
- -
- - array - -
- : - - { - - [ - - -
- -
- - one - -
- , - - -
- -
- - two - -
- , - - -
- -
- - three - -
- -
- -
- ] -
- } -
- , - - -
- -
- - object2 - -
- : - - { - - { - - -
- +
: - + { + + +
+ +
+ + object + +
+ : @@ -3294,7 +3323,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array
- +

- +

- +

- +
}
- } -
- , - + , -
- + +
+ +
+ + array +
- - array - -
- : - - { + : @@ -3374,7 +3399,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array
- +

- +

- +
- - { - - { - - -
- -
- - object - -
- : - - { - - { - - -
- -
- - object - -
- : - - { - - { - - -
- -
- - one - -
- : - - one - - , - - -
- -
- - two - -
- : - - two - - , - - -
- -
- - three - -
- : - - three - - -
- -
- } -
- } -
- , - - -
- -
- - array - -
- : - - { - - [ - - -
- -
- - one - -
- , - - -
- -
- - two - -
- , - - -
- -
- - three - -
- -
- -
- ] -
- } -
- -
- -
- } -
- } -
- -
- -
- } -
- } + + three

- +
]
+ +
+ +
}

- +
}
- }

- +
- } + ] +
+ +
+
}

- +
}
+ +
+ +
}
@@ -3717,14 +3577,10 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - - { - - false - - } + + false - - { - - onClick() - - } + + onClick() - - { - - {} - - } + + {} [ - + { + + + one + + + : + + Object and array properties will be broken to diff… + + , + + + two + + + : + + if greater than \`maxPropsIntoLine\` option threshol… + + , + + + object + + + : @@ -4075,40 +3961,116 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - one + object1 : - Object and array properties will be broken to diff… - - , - + { + + + one + + + : + one + + , + + + two + + + : + two - - : - - if greater than \`maxPropsIntoLine\` option threshol… + , + + + three + + + : + + three + + } , - object + array : + + [ + + + one + + + , + + + two + + + , + + + three + + + ] + + , + + object2 + + + : + { + + + object + + + : @@ -4117,114 +4079,75 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - object1 + one : - - { - - { - - - one - - - : - - one - - , - - - two - - - : - - two - - , - - - three - - - : - - three - - } - - } + + one , - array + two : - - { - - [ - - - one - - - , - - - two - - - , - - - three - - - ] - - } + + two , - object2 + three : + + three + + } + + , + + + array + + + : + + [ + + + one + + + , + + + two + + + , - { @@ -4237,8 +4160,18 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array : - + { + + + object + + + : @@ -4286,19 +4219,15 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array } - } - - , - - - array + , + + + array + - - : - - { + : @@ -4320,134 +4249,10 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array , - - { - - { - - - object - - - : - - { - - { - - - object - - - : - - { - - { - - - one - - - : - - one - - , - - - two - - - : - - two - - , - - - three - - - : - - three - - } - - } - - , - - - array - - - : - - { - - [ - - - one - - - , - - - two - - - , - - - three - - - ] - - } - - } - - } - - } - - } + + three ] @@ -4456,9 +4261,8 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array } - } - } + ] } @@ -4565,14 +4369,10 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - - { - - false - - } + + false - - { - - onClick() - - } + + onClick() - - { - - {} - - } + + {} - - { - - false - - } + + false - - { - - onClick() - - } + + onClick() - - { - - {} - - } + + {} - - { - - false - - } + + false - - { - - onClick() - - } + + onClick() - - { - - false - - } + + false - - { - - onClick() - - } + + onClick() - - { - - {} - - } + + {} - - { - - false - - } + + false - - { - - onClick() - - } + + onClick() - - { - - {} - - } + + {} - - { - - false - - } + + false - - { - - onClick() - - } + + onClick() - - { - - {} - - } + + {} - - { - - false - - } + + false - - { - - onClick() - - } + + onClick() - - { - - {} - - } + + {} - - { - - false - - } + + false - - { - - onClick() - - } + + onClick() - - { - - false - - } + + false - - { - - onClick() - - } + + onClick() - + { + + + key + + + : - { - - - key - - - : - - { - - 1 - - } - - } + 1 } @@ -6846,8 +6546,18 @@ exports[`Storyshots Addons|Info.React Docgen Comments from PropType declarations - + { + + + thing + + + : @@ -6856,72 +6566,42 @@ exports[`Storyshots Addons|Info.React Docgen Comments from PropType declarations - thing + id : + + 2 + + , - { - { - - - id - - - : - - { - - 2 - - } - - , - - - func - - - : - - { - - func() - - } - - , - - - arr - - - : - - { - - [] - - } - - } + func - } + + : + + func() + + , + + + arr + + + : + + [] } @@ -6951,26 +6631,22 @@ exports[`Storyshots Addons|Info.React Docgen Comments from PropType declarations - + { - - { - - - key - - - : + - value + key - } + + : + + value } @@ -6998,90 +6674,74 @@ exports[`Storyshots Addons|Info.React Docgen Comments from PropType declarations - + { + + +
+ +
+ + id + +
+ : + + 3 + + , + + +
+ +
+ + func + +
+ : + + func() + + , + + +
+ +
+ + arr + +
+ : - { - - -
- -
- - id - -
- : - - { - - 3 - - } - - , - - -
- -
- - func - -
- : - - { - - func() - - } - - , - - -
- -
- - arr - -
- : - - { - - [] - - } - - , - - -
- -
- … -
+ [] +
+ , +
- +
- } + … +
+ +
+
}
@@ -7109,50 +6769,34 @@ exports[`Storyshots Addons|Info.React Docgen Comments from PropType declarations - - { - - [ - - - { - - 1 - - } - + + [ + + + 1 - , - - - { - - 2 - - } - - - , - - - { - - 3 - - } - - - ] - } + , + + + 2 + + + , + + + 3 + + + ] - - { - - {} - - } + + {} - - { - - false - - } + + false - - { - - onClick() - - } + + onClick() - - { - - {} - - } + + {} - - { - - false - - } + + false - - { - - onClick() - - } + + onClick() - - { - - {} - - } + + {} Date: Thu, 10 May 2018 20:52:30 +0300 Subject: [PATCH 010/143] fix addon_support error --- ADDONS_SUPPORT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ADDONS_SUPPORT.md b/ADDONS_SUPPORT.md index 74caad61836..2a737f164f5 100644 --- a/ADDONS_SUPPORT.md +++ b/ADDONS_SUPPORT.md @@ -1,6 +1,6 @@ ## Addon / Framework Support Table -| |[React](app/react)|[React Native](app/react-native)|[Vue](app/vue)|[Angular](app/angular)| [Polymer](app/polymer)| [Mithril](app/mithril)| [HTML](app/html)| [Marko](app/marko)| +|[React](app/react)|[React Native](app/react-native)|[Vue](app/vue)|[Angular](app/angular)| [Polymer](app/polymer)| [Mithril](app/mithril)| [HTML](app/html)| [Marko](app/marko)| | ----------- |:-------:|:-------:|:-------:|:-------:|:-------:|:-------:|:-------:| |[a11y](addons/a11y) |+| | | | | |+| | |[actions](addons/actions) |+|+|+|+|+|+|+|+| From 974b0ad4f3cc14c79ebcdcf674ea0a861919bb03 Mon Sep 17 00:00:00 2001 From: klimentru1986 Date: Fri, 11 May 2018 00:11:07 +0300 Subject: [PATCH 011/143] added centered for angular --- addons/centered/src/angular.js | 58 ++++++++++++++++++++++++++++++++++ addons/centered/src/index.js | 4 ++- 2 files changed, 61 insertions(+), 1 deletion(-) create mode 100644 addons/centered/src/angular.js diff --git a/addons/centered/src/angular.js b/addons/centered/src/angular.js new file mode 100644 index 00000000000..42635b0affc --- /dev/null +++ b/addons/centered/src/angular.js @@ -0,0 +1,58 @@ +import styles from './styles'; + +function getComponentSelector(component) { + // eslint-disable-next-line no-underscore-dangle + return component.__annotations__[0].selector; +} + +function getTemplate(metadata) { + let tpl = ''; + if (metadata.component) { + const selector = getComponentSelector(metadata.component); + tpl = `<${selector}>`; + } + + if (metadata.template) { + tpl = metadata.template; + } + + return ` +

+
+ ${tpl} +
+
`; +} + +function getModuleMetadata(metadata) { + const { moduleMetadata, component } = metadata; + + if (component && !moduleMetadata) { + return { + declarations: [metadata.component], + }; + } + + if (component && moduleMetadata) { + return { + ...moduleMetadata, + declarations: [...moduleMetadata.declarations, metadata.component], + }; + } + + return moduleMetadata; +} + +export default function(metadataFn) { + const metadata = metadataFn(); + + return { + ...metadata, + template: getTemplate(metadata), + moduleMetadata: getModuleMetadata(metadata), + props: { + ...metadata.props, + styles, + }, + }; +} diff --git a/addons/centered/src/index.js b/addons/centered/src/index.js index ae0cc4e1f83..8891e1fa6e9 100644 --- a/addons/centered/src/index.js +++ b/addons/centered/src/index.js @@ -1,7 +1,9 @@ import { window } from 'global'; import ReactCentered from './react'; import VueCentered from './vue'; +import AngularCentered from './angular'; const Centered = window.STORYBOOK_ENV === 'vue' ? VueCentered : ReactCentered; - export default Centered; + +export const centeredAng = AngularCentered; From 5ed54dc96ab60d893531e96568e71aa0929efe74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A0=D1=83=D0=B4=D0=BD=D0=B8=D1=87=D0=B5=D0=BD=D0=BA?= =?UTF-8?q?=D0=BE=20=D0=9A=D0=BB=D0=B8=D0=BC=D0=B5=D0=BD=D1=82?= Date: Fri, 11 May 2018 10:03:27 +0300 Subject: [PATCH 012/143] added addon centered examples --- examples/angular-cli/package.json | 1 + .../src/stories/addon-centered.stories.ts | 29 +++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 examples/angular-cli/src/stories/addon-centered.stories.ts diff --git a/examples/angular-cli/package.json b/examples/angular-cli/package.json index c2b295a8182..66460d78999 100644 --- a/examples/angular-cli/package.json +++ b/examples/angular-cli/package.json @@ -37,6 +37,7 @@ "@storybook/addon-links": "4.0.0-alpha.4", "@storybook/addon-notes": "4.0.0-alpha.4", "@storybook/addon-options": "4.0.0-alpha.4", + "@storybook/addon-centered": "4.0.0-alpha.4", "@storybook/addon-storyshots": "4.0.0-alpha.4", "@storybook/addon-storysource": "4.0.0-alpha.4", "@storybook/addons": "4.0.0-alpha.4", diff --git a/examples/angular-cli/src/stories/addon-centered.stories.ts b/examples/angular-cli/src/stories/addon-centered.stories.ts new file mode 100644 index 00000000000..50811c15288 --- /dev/null +++ b/examples/angular-cli/src/stories/addon-centered.stories.ts @@ -0,0 +1,29 @@ +import { centeredAng } from '@storybook/addon-centered'; +import { moduleMetadata, storiesOf } from '@storybook/angular'; +import { Button } from '@storybook/angular/demo'; +import { AppComponent } from '../app/app.component'; + +storiesOf('Addon|Centered', module) + .addDecorator(centeredAng) + .add('centered component', () => ({ + component: AppComponent, + props: {}, + })); + +storiesOf('Addon|Centered', module) + .addDecorator( + moduleMetadata({ + declarations: [Button], + }) + ) + .addDecorator(centeredAng) + .add('centered template', () => ({ + template: ``, + props: { + text: 'Hello Button', + onClick: event => { + console.log('some bindings work'); + console.log(event); + }, + }, + })); From c689a1be6820d95d5dfcedff51f2d1cd845b5abd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A0=D1=83=D0=B4=D0=BD=D0=B8=D1=87=D0=B5=D0=BD=D0=BA?= =?UTF-8?q?=D0=BE=20=D0=9A=D0=BB=D0=B8=D0=BC=D0=B5=D0=BD=D1=82?= Date: Fri, 11 May 2018 10:30:51 +0300 Subject: [PATCH 013/143] documentation updated --- ADDONS_SUPPORT.md | 2 +- addons/centered/README.md | 44 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+), 1 deletion(-) diff --git a/ADDONS_SUPPORT.md b/ADDONS_SUPPORT.md index 0e41d1d535d..d435a919aba 100644 --- a/ADDONS_SUPPORT.md +++ b/ADDONS_SUPPORT.md @@ -5,7 +5,7 @@ |[a11y](addons/a11y) |+| | | | | |+| | |[actions](addons/actions) |+|+|+|+|+|+|+|+| |[backgrounds](addons/backgrounds) |+| | | | |+|+| | -|[centered](addons/centered) |+| |+| | |+|+| | +|[centered](addons/centered) |+| |+|+| |+|+| | |[events](addons/events) |+| | | | | |+| | |[graphql](addons/graphql) |+| | | | | | | | |[info](addons/info) |+| | | | | | | | diff --git a/addons/centered/README.md b/addons/centered/README.md index b24f3819ee2..8eccfd8e566 100644 --- a/addons/centered/README.md +++ b/addons/centered/README.md @@ -74,6 +74,50 @@ storiesOf('MyComponent', module) })); ``` +example for Angular with component: + +```ts +import { centeredAng } from '@storybook/addon-centered'; +import { storiesOf } from '@storybook/angular'; +import { AppComponent } from '../app/app.component'; + +storiesOf('Addon|Centered', module) + .addDecorator(centeredAng) + .add('centered component', () => ({ + component: AppComponent, + props: {}, + })); + +``` + +example for Angular with template: + +```ts +import { centeredAng } from '@storybook/addon-centered'; +import { moduleMetadata, storiesOf } from '@storybook/angular'; +import { AppComponent } from '../app/app.component'; + +storiesOf('Addon|Centered', module) + .addDecorator( + moduleMetadata({ + declarations: [Button], + }) + ) + .addDecorator(centeredAng) + .add('centered template', () => ({ + template: ` + `, + props: { + text: 'Hello Button', + onClick: event => { + console.log('some bindings work'); + console.log(event); + }, + }, + })); +``` + Also, you can also add this decorator globally example for React: From 179a687d116d39bda5c2f15b2c80a7cf4c456127 Mon Sep 17 00:00:00 2001 From: George Y Date: Fri, 11 May 2018 16:29:39 +0300 Subject: [PATCH 014/143] revert new braceWrapped prop and use level prop instead; add nested props to addon-info.stories. --- .../info/src/__snapshots__/index.test.js.snap | 1558 +++++++------- addons/info/src/components/PropVal.js | 12 +- addons/info/src/components/Props.js | 5 +- .../addon-info.stories.storyshot | 1807 +++++++++-------- .../stories/addon-info.stories.js | 20 +- 5 files changed, 1771 insertions(+), 1631 deletions(-) diff --git a/addons/info/src/__snapshots__/index.test.js.snap b/addons/info/src/__snapshots__/index.test.js.snap index 7c91ed5dddb..6b347b39af7 100644 --- a/addons/info/src/__snapshots__/index.test.js.snap +++ b/addons/info/src/__snapshots__/index.test.js.snap @@ -700,8 +700,8 @@ exports[`addon Info should render and external markdown 1`] = ` + { and external markdown 1`] = ` val={[Function]} > and external markdown 1`] = ` val={[Function]} valueStyles={null} > - - { - - func() - } + > + func() + } @@ -841,8 +837,8 @@ exports[`addon Info should render and external markdown 1`] = ` + { and external markdown 1`] = ` } > and external markdown 1`] = ` } valueStyles={null} > - - { - + + { + + a + + + : + - { - - a - - - : - - - a - - - , - - - b - + "a" - : - + , + + - - b - - - } + b + - - } - + : + + + "b" + + + } + + + } @@ -1166,8 +1156,8 @@ exports[`addon Info should render and external markdown 1`] = ` + { and external markdown 1`] = ` } > and external markdown 1`] = ` } valueStyles={null} > - - { - + + [ - [ - - - - 1 - - - - , - - - - 2 - - - - , - - - - 3 - - - - ] + 1 + + - - } - + , + + + + 2 + + + + , + + + + 3 + + + + ] + + + } @@ -1524,8 +1507,8 @@ exports[`addon Info should render and external markdown 1`] = ` + { and external markdown 1`] = ` val={7} > and external markdown 1`] = ` val={7} valueStyles={null} > - - { - - 7 - } + > + 7 + } @@ -1667,7 +1646,6 @@ exports[`addon Info should render and external markdown 1`] = ` > " and external markdown 1`] = ` val="seven" > + { - - { - - func() - } + > + func() + } @@ -2963,8 +2936,8 @@ containing **bold**, *cursive* text, \`code\` and [a link](https://github.com)" + { - - { - + + { + + a + + + : + - { - - a - - - : - - - a - - - , - - - b - + "a" - : - + , + + - - b - - - } + b + - - } - + : + + + "b" + + + } + + + } @@ -3288,8 +3255,8 @@ containing **bold**, *cursive* text, \`code\` and [a link](https://github.com)" + { - - { - + + [ - [ - - - - 1 - - - - , - - - - 2 - - - - , - - - - 3 - - - - ] + 1 + + - - } - + , + + + + 2 + + + + , + + + + 3 + + + + ] + + + } @@ -3646,8 +3606,8 @@ containing **bold**, *cursive* text, \`code\` and [a link](https://github.com)" + { - - { - - 7 - } + > + 7 + } @@ -3789,7 +3745,6 @@ containing **bold**, *cursive* text, \`code\` and [a link](https://github.com)" > " maxPropStringLength) { val = `${val.slice(0, maxPropStringLength)}…`; } + if (level > 1) { + val = `"${val}"`; + } content = {val}; - braceWrap = false; } else if (typeof val === 'boolean') { content = {`${val}`}; } else if (Array.isArray(val)) { @@ -246,9 +246,7 @@ function PropVal(props) { ); } - if (!braceWrap) return content; - - return {{content}}; + return content; } PropVal.defaultProps = { @@ -260,7 +258,6 @@ PropVal.defaultProps = { level: 1, theme: {}, valueStyles: null, - braceWrapped: false, }; PropVal.propTypes = { @@ -283,7 +280,6 @@ PropVal.propTypes = { bool: PropTypes.object, empty: PropTypes.object, }), - braceWrapped: PropTypes.bool, }; export default withTheme(PropVal); diff --git a/addons/info/src/components/Props.js b/addons/info/src/components/Props.js index f16e0a09c6b..5c40235fbd8 100644 --- a/addons/info/src/components/Props.js +++ b/addons/info/src/components/Props.js @@ -45,16 +45,15 @@ export default function Props(props) { = - {typeof nodeProps[name] === 'string' && '"'} + {typeof nodeProps[name] === 'string' ? '"' : '{'} - {typeof nodeProps[name] === 'string' && '"'} + {typeof nodeProps[name] === 'string' ? '"' : '}'} )} diff --git a/examples/official-storybook/stories/__snapshots__/addon-info.stories.storyshot b/examples/official-storybook/stories/__snapshots__/addon-info.stories.storyshot index 0dfcd81abda..585d10e4756 100644 --- a/examples/official-storybook/stories/__snapshots__/addon-info.stories.storyshot +++ b/examples/official-storybook/stories/__snapshots__/addon-info.stories.storyshot @@ -548,15 +548,13 @@ exports[`Storyshots Addons|Info.JSX Displays JSX in description 1`] = ` = - - { - - clicked() - - } + { + + clicked() + } @@ -881,15 +879,13 @@ exports[`Storyshots Addons|Info.Markdown Displays Markdown in description 1`] = = - - { - - clicked() - - } + { + + clicked() + } @@ -1183,15 +1179,13 @@ exports[`Storyshots Addons|Info.Markdown From external Markdown file 1`] = ` = - - { - - clicked() - - } + { + + clicked() + } @@ -1497,15 +1491,13 @@ exports[`Storyshots Addons|Info.Markdown From internal Markdown file 1`] = ` = - - { - - clicked() - - } + { + + clicked() + } @@ -2794,73 +2786,71 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array = - + { + { - - { - - -
- -
- - one - -
- : - - Object and array properties - - , - - -
- -
- - two - -
- : - - will be broken to different lines - - , - - -
- -
- - three - -
- : - - if greater than \`maxPropsIntoLine\` option threshol… - +
- +
- } + + one + +
+ : + + "Object and array properties" + + , + + +
+ +
+ + two + +
+ : + + "will be broken to different lines" + + , + + +
+ +
+ + three + +
+ : + + "if greater than \`maxPropsIntoLine\` option threshol…" + + +
+
}
+ }
@@ -2875,63 +2865,61 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array = - - { - - [ - - -
- -
- - one - -
- , - - -
- -
- - two - -
- , - - -
- -
- - three - -
- , - - -
- -
- … -
+ { + + [ +
- + +
+ + "one" - ]
- } + , + + +
+ +
+ + "two" + +
+ , + + +
+ +
+ + "three" + +
+ , + + +
+ +
+ … +
+ +
+ +
+ ]
+ }
@@ -2946,17 +2934,68 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array = - - { - - [ + { + + [ + +
+ +
+ + { -
- + +
+ +
+ + one +
+ : + + "Object and array properties will be broken to diff…" + + , + + +
+ +
+ + two + +
+ : + + "if greater than \`maxPropsIntoLine\` option threshol…" + + , + + +
+ +
+ + object + +
+ : @@ -2964,48 +3003,12 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array
- +
- one - -
- : - - Object and array properties will be broken to diff… - - , - - -
- -
- - two - -
- : - - if greater than \`maxPropsIntoLine\` option threshol… - - , - - -
- -
- - object + object1
: @@ -3016,12 +3019,146 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array
- +
- object1 + one + +
+ : + + "one" + + , + + +
+ +
+ + two + +
+ : + + "two" + + , + + +
+ +
+ + three + +
+ : + + "three" + + +
+ +
+ } +
+ , + + +
+ +
+ + array + +
+ : + + [ + + +
+ +
+ + "one" + +
+ , + + +
+ +
+ + "two" + +
+ , + + +
+ +
+ + "three" + +
+ +
+ +
+ ] +
+ , + + +
+ +
+ + object2 + +
+ : + + { + + +
+ +
+ + object
: @@ -3032,7 +3169,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array
- +
- one + "one" ,
- +
- two + "two" ,
- +
- three + "three"
- +
}
@@ -3092,7 +3229,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array
- +

- +
- one + "one"
,
- +
- two + "two"
,
- -
- - three - -
- -
- -
- ] -
- , - - -
- -
- - object2 - -
- : - - { - - -
- +
- object - -
- : - - { - + { -
- -
- - one - -
- : - - one - - , - - -
- -
- - two - -
- : - - two - - , - - -
- -
- - three - -
- : - - three - - -
- -
- } -
- , - - -
- -
- - array - -
- : - - [ - - -
- -
- - one - -
- , - - -
- -
- - two - -
- , - - -
- + +
+ +
+ + object +
+ : @@ -3291,7 +3294,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array
- +

- +
- object + one
: - { - - -
- -
- - one - -
- : - - one - - , - - -
- -
- - two - -
- : - - two - - , - - -
- -
- - three - -
- : - - three - - -
- -
- } + "one"
,
- +
- array + two
: - [ - - -
- -
- - one - -
- , - - -
- -
- - two - -
- , - - -
- -
- - three - -
+ "two" +
+ , +
- +
- ] + + three + +
+ : + + "three"
- +
}
+ , + + +
+ +
+ + array + +
+ : + + [ + + +
+ +
+ + "one" + +
+ , + + +
+ +
+ + "two" + +
+ , + + +
+ +
+ + "three" + +
+ +
+ +
+ ] +

- +
}
+ +
+ +
+ }
- -
- -
- ]

- +
- } + ]

- +
}

- +
}
+ +
+ +
+ }
- -
- -
- ]
- } + +
+ +
+ ]
+ }

@@ -3770,57 +3756,55 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array = - + { + { + + + one + + + : - { - - - one - - - : + "Object and array properties" + + , + - Object and array properties + two - , - - - two - - - : + + : + + "will be broken to different lines" + + , + - will be broken to different lines + three - , - - - three - - - : - - if greater than \`maxPropsIntoLine\` option threshol… - - } + + : + + "if greater than \`maxPropsIntoLine\` option threshol…" } + } @@ -3835,63 +3819,61 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array = - - { - - [ - - -
- -
- - one - -
- , - - -
- -
- - two - -
- , - - -
- -
- - three - -
- , - - -
- -
- … -
+ { + + [ +
- + +
+ + "one" - ]
- } + , + + +
+ +
+ + "two" + +
+ , + + +
+ +
+ + "three" + +
+ , + + +
+ +
+ … +
+ +
+ +
+ ]
+ }
@@ -3906,13 +3888,52 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array = - - { - - [ - + { + + [ + + + { + + + one + + + : + + "Object and array properties will be broken to diff…" + + , + + + two + + + : + + "if greater than \`maxPropsIntoLine\` option threshol…" + + , + + + object + + + : @@ -3921,35 +3942,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - one - - - : - - Object and array properties will be broken to diff… - - , - - - two - - - : - - if greater than \`maxPropsIntoLine\` option threshol… - - , - - - object + object1 : @@ -3961,7 +3954,101 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - object1 + one + + + : + + "one" + + , + + + two + + + : + + "two" + + , + + + three + + + : + + "three" + + } + + , + + + array + + + : + + [ + + + "one" + + + , + + + "two" + + + , + + + "three" + + + ] + + , + + + object2 + + + : + + { + + + object : @@ -3980,7 +4067,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - one + "one" , @@ -3994,7 +4081,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - two + "two" , @@ -4008,7 +4095,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - three + "three" } @@ -4029,7 +4116,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - one + "one" , @@ -4037,117 +4124,23 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - two + "two" , - - - three - - - ] - - , - - - object2 - - - : - - { - - - object - - - : - - { - - - one - - - : - - one - - , - - - two - - - : - - two - - , - - - three - - - : - - three - - } - - , - array - - - : - - [ - - - one + { + + + object + - - , - - - two - - - , - + : @@ -4168,113 +4161,100 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - object + one : - { - - - one - - - : - - one - - , - - - two - - - : - - two - - , - - - three - - - : - - three - - } + "one" , - array + two : - [ - - - one - + "two" + + , + + + three - , - - - two - - - , - - - three - - - ] + + : + + "three" } + , + + + array + + + : + + [ + + + "one" + + + , + + + "two" + + + , + + + "three" + + + ] + } + } - ] - } + ] } } + } - ] - } + ] + }

@@ -6047,15 +6027,13 @@ exports[`Storyshots Addons|Info.React Docgen Comments from Flow declarations 1`] = - - { - - clicked() - - } + { + + clicked() + } @@ -6292,27 +6270,31 @@ exports[`Storyshots Addons|Info.React Docgen Comments from PropType declarations
- + +
+    +
onClick = - - { - - clicked() - - } + { + + clicked() + } - + +
+    +
label @@ -6328,7 +6310,202 @@ exports[`Storyshots Addons|Info.React Docgen Comments from PropType declarations "
- +
+ + +
+    +
+ + one + + + = + + { + + { + + + key + + + : + + 1 + + } + + } + + +
+ + +
+    +
+ + shape + + + = + + { + + { + + +
+ +
+ + id + +
+ : + + 3 + + , + + +
+ +
+ + arr + +
+ : + + [] + + , + + +
+ +
+ + shape + +
+ : + + { + + + shape + + + : + + { + + + foo + + + : + + "bar" + + } + + } + + , + + +
+ +
+ … +
+ +
+ +
+ } +
+ } +
+
+
+ + +
+    +
+ + arrayOf + + + = + + { + + [ + + + 1 + + + , + + + 2 + + + , + + + 3 + + + ] + + } + + +
- value + "value" }
@@ -7036,15 +7213,13 @@ exports[`Storyshots Addons|Info.React Docgen Comments from component declaration = - - { - - clicked() - - } + { + + clicked() + } @@ -7340,15 +7515,13 @@ exports[`Storyshots Addons|Info.React Docgen Comments from named export componen = - - { - - clicked() - - } + { + + clicked() + } diff --git a/examples/official-storybook/stories/addon-info.stories.js b/examples/official-storybook/stories/addon-info.stories.js index 1007c5cff33..6f6c49ed673 100644 --- a/examples/official-storybook/stories/addon-info.stories.js +++ b/examples/official-storybook/stories/addon-info.stories.js @@ -15,7 +15,25 @@ storiesOf('Addons|Info.React Docgen', module) 'Comments from PropType declarations', withInfo( 'Comments above the PropType declarations should be extracted from the React component file itself and rendered in the Info Addon prop table' - )(() => ) + )(() => ( + {}, + }} + arrayOf={[1, 2, 3]} + /> + )) ) .add( 'Comments from Flow declarations', From ce6e8cd4701372755853207e098f0c540a49ed9e Mon Sep 17 00:00:00 2001 From: George Y Date: Fri, 11 May 2018 17:01:29 +0300 Subject: [PATCH 015/143] use single quotes instead of double quotes for nested strings --- .../info/src/__snapshots__/index.test.js.snap | 8 +- addons/info/src/components/PropVal.js | 2 +- .../addon-info.stories.storyshot | 104 +++++++++--------- lib/cli/test/snapshots/meteor/package.json | 2 +- 4 files changed, 58 insertions(+), 58 deletions(-) diff --git a/addons/info/src/__snapshots__/index.test.js.snap b/addons/info/src/__snapshots__/index.test.js.snap index 6b347b39af7..86fec14626c 100644 --- a/addons/info/src/__snapshots__/index.test.js.snap +++ b/addons/info/src/__snapshots__/index.test.js.snap @@ -1062,7 +1062,7 @@ exports[`addon Info should render and external markdown 1`] = ` } } > - "a" + 'a'
, @@ -1127,7 +1127,7 @@ exports[`addon Info should render and external markdown 1`] = ` } } > - "b" + 'b' } @@ -3161,7 +3161,7 @@ containing **bold**, *cursive* text, \`code\` and [a link](https://github.com)" } } > - "a" + 'a' , @@ -3226,7 +3226,7 @@ containing **bold**, *cursive* text, \`code\` and [a link](https://github.com)" } } > - "b" + 'b' } diff --git a/addons/info/src/components/PropVal.js b/addons/info/src/components/PropVal.js index ff7207d019e..712206f40c7 100644 --- a/addons/info/src/components/PropVal.js +++ b/addons/info/src/components/PropVal.js @@ -201,7 +201,7 @@ function PropVal(props) { val = `${val.slice(0, maxPropStringLength)}…`; } if (level > 1) { - val = `"${val}"`; + val = `'${val}'`; } content = {val}; } else if (typeof val === 'boolean') { diff --git a/examples/official-storybook/stories/__snapshots__/addon-info.stories.storyshot b/examples/official-storybook/stories/__snapshots__/addon-info.stories.storyshot index 585d10e4756..6af79af81bb 100644 --- a/examples/official-storybook/stories/__snapshots__/addon-info.stories.storyshot +++ b/examples/official-storybook/stories/__snapshots__/addon-info.stories.storyshot @@ -2806,7 +2806,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "Object and array properties" + 'Object and array properties' , @@ -2824,7 +2824,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "will be broken to different lines" + 'will be broken to different lines' , @@ -2842,7 +2842,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "if greater than \`maxPropsIntoLine\` option threshol…" + 'if greater than \`maxPropsIntoLine\` option threshol…'
@@ -2878,7 +2878,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "one" + 'one'
, @@ -2890,7 +2890,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "two" + 'two'
, @@ -2902,7 +2902,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "three" + 'three'
, @@ -2963,7 +2963,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "Object and array properties will be broken to diff…" + 'Object and array properties will be broken to diff…' , @@ -2981,7 +2981,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "if greater than \`maxPropsIntoLine\` option threshol…" + 'if greater than \`maxPropsIntoLine\` option threshol…' , @@ -3031,7 +3031,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "one" + 'one' , @@ -3049,7 +3049,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "two" + 'two' , @@ -3067,7 +3067,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "three" + 'three'
@@ -3100,7 +3100,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "one" + 'one'
, @@ -3112,7 +3112,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "two" + 'two'
, @@ -3124,7 +3124,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "three" + 'three'
@@ -3181,7 +3181,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "one" + 'one' , @@ -3199,7 +3199,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "two" + 'two' , @@ -3217,7 +3217,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "three" + 'three'
@@ -3250,7 +3250,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "one" + 'one'
, @@ -3262,7 +3262,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "two" + 'two'
, @@ -3322,7 +3322,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "one" + 'one' , @@ -3340,7 +3340,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "two" + 'two' , @@ -3358,7 +3358,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "three" + 'three'
@@ -3391,7 +3391,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "one" + 'one'
, @@ -3403,7 +3403,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "two" + 'two'
, @@ -3415,7 +3415,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 0 Object and array - "three" + 'three'
@@ -3772,7 +3772,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "Object and array properties" + 'Object and array properties' , @@ -3786,7 +3786,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "will be broken to different lines" + 'will be broken to different lines' , @@ -3800,7 +3800,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "if greater than \`maxPropsIntoLine\` option threshol…" + 'if greater than \`maxPropsIntoLine\` option threshol…' } @@ -3832,7 +3832,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "one" + 'one' , @@ -3844,7 +3844,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "two" + 'two' , @@ -3856,7 +3856,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "three" + 'three'
, @@ -3909,7 +3909,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "Object and array properties will be broken to diff…" + 'Object and array properties will be broken to diff…' , @@ -3923,7 +3923,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "if greater than \`maxPropsIntoLine\` option threshol…" + 'if greater than \`maxPropsIntoLine\` option threshol…' , @@ -3961,7 +3961,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "one" + 'one' , @@ -3975,7 +3975,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "two" + 'two' , @@ -3989,7 +3989,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "three" + 'three' } @@ -4010,7 +4010,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "one" + 'one' , @@ -4018,7 +4018,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "two" + 'two' , @@ -4026,7 +4026,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "three" + 'three' ] @@ -4067,7 +4067,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "one" + 'one' , @@ -4081,7 +4081,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "two" + 'two' , @@ -4095,7 +4095,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "three" + 'three' } @@ -4116,7 +4116,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "one" + 'one' , @@ -4124,7 +4124,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "two" + 'two'
, @@ -4168,7 +4168,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "one" + 'one' , @@ -4182,7 +4182,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "two" + 'two' , @@ -4196,7 +4196,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "three" + 'three' } @@ -4217,7 +4217,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "one" + 'one' , @@ -4225,7 +4225,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "two" + 'two'
, @@ -4233,7 +4233,7 @@ exports[`Storyshots Addons|Info.Options.maxPropsIntoLine === 3 Object and array - "three" + 'three'
] @@ -6437,7 +6437,7 @@ exports[`Storyshots Addons|Info.React Docgen Comments from PropType declarations - "bar" + 'bar' } @@ -6823,7 +6823,7 @@ exports[`Storyshots Addons|Info.React Docgen Comments from PropType declarations - "value" + 'value' } diff --git a/lib/cli/test/snapshots/meteor/package.json b/lib/cli/test/snapshots/meteor/package.json index 21d45d896bd..7d64298af7f 100644 --- a/lib/cli/test/snapshots/meteor/package.json +++ b/lib/cli/test/snapshots/meteor/package.json @@ -15,7 +15,7 @@ }, "devDependencies": { "babel-core": "^6.26.3", - "babel-preset-env": "^1.6.1", + "babel-preset-env": "^1.7.0", "babel-preset-react": "^6.24.1", "babel-preset-stage-1": "^6.24.1", "babel-root-slash-import": "^1.1.0", From f0341a89e73ef5ec702bfb088d0c0e1ddfca0357 Mon Sep 17 00:00:00 2001 From: klimentru1986 Date: Fri, 11 May 2018 20:06:54 +0300 Subject: [PATCH 016/143] snapshots updated --- .../addon-centered.stories.storyshot | 172 ++++++++++++++++++ .../addon-links.stories.storyshot | 4 +- .../addon-notes.stories.storyshot | 8 +- .../__snapshots__/core.stories.storyshot | 4 +- .../custom-styles.stories.storyshot | 12 +- 5 files changed, 186 insertions(+), 14 deletions(-) create mode 100644 examples/angular-cli/src/stories/__snapshots__/addon-centered.stories.storyshot diff --git a/examples/angular-cli/src/stories/__snapshots__/addon-centered.stories.storyshot b/examples/angular-cli/src/stories/__snapshots__/addon-centered.stories.storyshot new file mode 100644 index 00000000000..c7f1b701911 --- /dev/null +++ b/examples/angular-cli/src/stories/__snapshots__/addon-centered.stories.storyshot @@ -0,0 +1,172 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Storyshots Addon|Centered centered component 1`] = ` + + + + +
+ + +
+ + + + + +
+ + This should be hidden, if not - scss is not loaded as needed. + +
+ + +
+ + +

+ + Welcome to app! + +

+ + + + + +
+ + +

+ Here are some links to help you start: +

+ + + + + + +
+ + +
+ + +
+
+
+`; + +exports[`Storyshots Addon|Centered centered template 1`] = ` + + + + +
+ + +
+ + + + + + + + + + + +
+ + +
+
+
+`; diff --git a/examples/angular-cli/src/stories/__snapshots__/addon-links.stories.storyshot b/examples/angular-cli/src/stories/__snapshots__/addon-links.stories.storyshot index a1b6f66194a..349cdab950a 100644 --- a/examples/angular-cli/src/stories/__snapshots__/addon-links.stories.storyshot +++ b/examples/angular-cli/src/stories/__snapshots__/addon-links.stories.storyshot @@ -7,12 +7,12 @@ exports[`Storyshots Addon|Links button with link to another story 1`] = ` target={[Function ViewContainerRef_]} > diff --git a/examples/angular-cli/src/stories/__snapshots__/addon-notes.stories.storyshot b/examples/angular-cli/src/stories/__snapshots__/addon-notes.stories.storyshot index 03dd1673671..e1f1dddf8ae 100644 --- a/examples/angular-cli/src/stories/__snapshots__/addon-notes.stories.storyshot +++ b/examples/angular-cli/src/stories/__snapshots__/addon-notes.stories.storyshot @@ -7,12 +7,12 @@ exports[`Storyshots Addon|Notes Note with HTML 1`] = ` target={[Function ViewContainerRef_]} > @@ -29,12 +29,12 @@ exports[`Storyshots Addon|Notes Simple note 1`] = ` target={[Function ViewContainerRef_]} > diff --git a/examples/angular-cli/src/stories/__snapshots__/core.stories.storyshot b/examples/angular-cli/src/stories/__snapshots__/core.stories.storyshot index 5f1150f55ad..dcd81bbc945 100644 --- a/examples/angular-cli/src/stories/__snapshots__/core.stories.storyshot +++ b/examples/angular-cli/src/stories/__snapshots__/core.stories.storyshot @@ -7,12 +7,12 @@ exports[`Storyshots Core|Parameters passed to story 1`] = ` target={[Function ViewContainerRef_]} > diff --git a/examples/angular-cli/src/stories/__snapshots__/custom-styles.stories.storyshot b/examples/angular-cli/src/stories/__snapshots__/custom-styles.stories.storyshot index 9999b7af602..017c637ae3f 100644 --- a/examples/angular-cli/src/stories/__snapshots__/custom-styles.stories.storyshot +++ b/examples/angular-cli/src/stories/__snapshots__/custom-styles.stories.storyshot @@ -8,13 +8,13 @@ exports[`Storyshots Custom|Style Default 1`] = ` > @@ -32,17 +32,17 @@ exports[`Storyshots Custom|Style With Knobs 1`] = ` target={[Function ViewContainerRef_]} > From 009f6cd8d8cee7216cbf8cb4a8035d11e9b47d45 Mon Sep 17 00:00:00 2001 From: klimentru1986 Date: Fri, 11 May 2018 20:34:17 +0300 Subject: [PATCH 017/143] yarn test --cli --update --- ...map-react-native-packager-1-ce06e11dd572473aa7654c0c19f367c5 | 1 + lib/cli/test/snapshots/meteor/package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 lib/cli/haste-map-react-native-packager-1-ce06e11dd572473aa7654c0c19f367c5 diff --git a/lib/cli/haste-map-react-native-packager-1-ce06e11dd572473aa7654c0c19f367c5 b/lib/cli/haste-map-react-native-packager-1-ce06e11dd572473aa7654c0c19f367c5 new file mode 100644 index 00000000000..b6b715abeb1 --- /dev/null +++ b/lib/cli/haste-map-react-native-packager-1-ce06e11dd572473aa7654c0c19f367c5 @@ -0,0 +1 @@ +{"clocks":{},"duplicates":{},"files":{"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/storybook/index.ios.js":["",1526059430218,1,["./storybook"]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/storybook/addons.js":["",1526059430218,1,["@storybook/addon-actions/register","@storybook/addon-links/register"]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/storybook/storybook.js":["",1526059430242,1,["react","react-native","@storybook/react-native","./stories"]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/storybook/index.js":["",1526059430218,1,["./storybook"]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/storybook/index.android.js":["",1526059430218,1,["./storybook"]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/storybook/stories/CenterView/index.js":["",1526059430218,1,["react","prop-types","react-native","./style"]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/storybook/stories/CenterView/style.js":["",1526059430218,1,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/storybook/stories/index.js":["",1526059430218,1,["react","react-native","@storybook/react-native","@storybook/addon-actions","@storybook/addon-links","./Button","./CenterView","./Welcome"]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/storybook/stories/Button/index.ios.js":["",1526059430218,1,["react","prop-types","react-native"]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/storybook/stories/Button/index.android.js":["",1526059430218,1,["react","prop-types","react-native"]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/storybook/stories/Welcome/index.js":["",1526059430218,1,["react","prop-types","react-native"]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/index.ios.js":["",1526059376366,1,["react","react-native"]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/package.json":["react-native-fixture",1526059430242,1,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/ios/react_native/Images.xcassets/AppIcon.appiconset/Contents.json":["",1526059376370,1,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest/build/jest.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest/package.json":["",1495635211000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest/bin/jest.js":["",1494584416000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-validate/build/warnings.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-validate/build/condition.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-validate/build/validate.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-validate/build/index.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-validate/build/utils.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-validate/build/exampleConfig.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-validate/build/errors.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-validate/build/deprecated.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-validate/build/types.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-validate/build/defaultConfig.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-validate/build-es5/warnings.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-validate/build-es5/condition.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-validate/build-es5/validate.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-validate/build-es5/index.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-validate/build-es5/utils.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-validate/build-es5/exampleConfig.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-validate/build-es5/errors.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-validate/build-es5/deprecated.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-validate/build-es5/types.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-validate/build-es5/defaultConfig.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-validate/package.json":["",1495018620000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-message-util/build/index.js":["",1495014561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-message-util/build-es5/index.js":["",1495014561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-message-util/package.json":["",1495018620000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/package.json":["",1495621704000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/node.js":["",1486066060000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/expression.js":["",1495621697000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/loose/expression.js":["",1495621697000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/loose/index.js":["",1495621697000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/loose/parseutil.js":["",1495621697000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/loose/statement.js":["",1495621697000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/loose/tokenize.js":["",1495621697000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/loose/state.js":["",1495621697000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/util.js":["",1495621697000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/whitespace.js":["",1486066060000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/locutil.js":["",1486066060000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/index.js":["",1495621697000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/tokentype.js":["",1495621697000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/walk/index.js":["",1495621697000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/parseutil.js":["",1495621697000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/statement.js":["",1495621697000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/options.js":["",1495621697000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/tokenize.js":["",1495621697000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/bin/acorn.js":["",1495621697000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/lval.js":["",1495621697000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/identifier.js":["",1495621697000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/state.js":["",1495621697000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/tokencontext.js":["",1495621697000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/src/location.js":["",1486066060000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/dist/walk.js":["",1495621713000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/dist/acorn_loose.es.js":["",1495621714000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/dist/walk.es.js":["",1495621713000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/dist/acorn.js":["",1495621712000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/dist/acorn.es.js":["",1495621712000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/acorn/dist/acorn_loose.js":["",1495621714000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-haste-map/build/lib/extractRequires.js":["",1500286095000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-haste-map/build/lib/getPlatformExtension.js":["",1500286095000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-haste-map/build/crawlers/node.js":["",1500286095000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-haste-map/build/crawlers/watchman.js":["",1500286095000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-haste-map/build/worker.js":["",1500286095000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-haste-map/build/index.js":["",1500286095000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-haste-map/build/getMockName.js":["",1500286095000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-haste-map/build/ModuleMap.js":["",1500286095000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-haste-map/build/HasteFS.js":["",1500286095000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-haste-map/build/constants.js":["",1500286094000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-haste-map/build/types.js":["",1500286095000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-haste-map/package.json":["",1500286343000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/sane/package.json":["",1487656114000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/sane/index.js":["",1466638956000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/sane/node_modules/fb-watchman/package.json":["",1485558571000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/sane/node_modules/fb-watchman/index.js":["",1485475598000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/sane/src/node_watcher.js":["",1487653844000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/sane/src/cli.js":["",1466638956000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/sane/src/watchman_watcher.js":["",1482563930000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/sane/src/poll_watcher.js":["",1482563929000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/sane/src/utils/recrawl-warning-dedupe.js":["",1467160106000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/sane/src/common.js":["",1487653844000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/chalk/package.json":["",1459210524000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/chalk/index.js":["",1459210441000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react/cjs/react.development.js":["",1493759772000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react/cjs/react.production.min.js":["",1493759773000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react/package.json":["",1493759771000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react/umd/react.development.js":["",1493759771000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react/umd/react.production.min.js":["",1493759772000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react/index.js":["",1493759771000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react/node_modules/prop-types/lib/ReactPropTypesSecret.js":["",1506382846000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react/node_modules/prop-types/checkPropTypes.js":["",1506382846000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react/node_modules/prop-types/factory.js":["",1506382846000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react/node_modules/prop-types/package.json":["",1506383031000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react/node_modules/prop-types/factoryWithThrowingShims.js":["",1506382846000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react/node_modules/prop-types/index.js":["",1506382846000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react/node_modules/prop-types/factoryWithTypeCheckers.js":["",1506382846000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react/node_modules/prop-types/prop-types.js":["",1506383084000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react/node_modules/prop-types/prop-types.min.js":["",1506383085000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/esprima/package.json":["",1482462906000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/esprima/bin/esvalidate.js":["",1481604347000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/esprima/bin/esparse.js":["",1481604347000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/esprima/dist/esprima.js":["",1482463104000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/every.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseDifference.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createFind.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_cloneTypedArray.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseFor.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_initCloneByTag.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseFindIndex.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createCurry.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseSetToString.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseAssignValue.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseSum.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/chain.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseEach.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/sortedIndex.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseConformsTo.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_equalArrays.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/groupBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/orderBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/snakeCase.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/every.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/curryN.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/chain.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/sortedIndex.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/defaultsDeepAll.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/groupBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/orderBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/snakeCase.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/takeWhile.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/overArgs.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/replace.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/value.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/stubTrue.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/toNumber.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/reduceRight.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/toFinite.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/paths.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/findFrom.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/mergeWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/takeLastWhile.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/slice.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/updateWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/pullAllWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/has.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/seq.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/once.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/flow.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/create.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isNumber.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/convert.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/sum.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/nth.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/_mapping.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/padStart.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/dropLast.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isArrayLikeObject.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/stubString.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/forIn.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/padCharsEnd.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/unzip.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/lastIndexOf.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isString.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/upperFirst.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/toString.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/omit.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/sortedUniqBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/invert.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/lastIndexOfFrom.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/endsWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/_falseOptions.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/findLastKey.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/max.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isElement.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/castArray.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/after.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isEqual.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/dropWhile.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/symmetricDifferenceBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/setWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/head.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isMatchWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/split.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/throttle.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isPlainObject.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/zipWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/invokeMap.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/zipObjectDeep.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/util.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/partition.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isEmpty.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/countBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isObjectLike.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/minBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/ceil.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/pickBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/where.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/props.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/entries.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/hasIn.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/restFrom.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/camelCase.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isSet.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/wrapperValue.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/getOr.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isSymbol.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/functionsIn.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/keysIn.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/differenceBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/cloneDeep.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/pullAllBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/sumBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/wrap.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/truncate.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/trimEnd.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/whereEq.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isArray.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/mean.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/toPairs.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isError.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/equals.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/thru.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isBuffer.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/dissoc.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/defaultsAll.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/string.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/flowRight.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/extendWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/initial.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/fill.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/__.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/useWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/xor.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/template.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/propOr.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/nthArg.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/inRange.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/invokeArgsMap.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/spread.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/flattenDepth.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isUndefined.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/attempt.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/propertyOf.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/placeholder.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isInteger.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/stubFalse.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/indexBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/toArray.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/ary.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/differenceWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/unnest.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/join.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isWeakMap.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/remove.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/compose.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isRegExp.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/toIterator.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/findIndex.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/defer.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/at.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/valueOf.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/takeLast.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/forOwnRight.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isWeakSet.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/some.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/always.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/invertBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/capitalize.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/noop.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/init.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/negate.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/complement.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/wrapperReverse.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/forEach.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/invokeArgs.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/pad.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/bindKey.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/concat.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/round.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/clone.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isLength.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/partial.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/result.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/curry.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/deburr.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/toSafeInteger.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/maxBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/startsWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/collection.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/allPass.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/unzipWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/over.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/uniqueId.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/filter.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/now.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/unapply.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/gt.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/identical.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/mergeAll.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/pull.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/chunk.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/divide.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/toJSON.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/update.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isSafeInteger.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/upperCase.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/fromPairs.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/takeRightWhile.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/unary.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/min.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/toPath.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/property.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/templateSettings.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/size.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/random.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/unescape.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/without.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/flatten.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/matches.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/intersectionBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/keys.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/flatMapDeep.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/_util.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/defaultTo.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isArguments.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/all.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/assoc.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/functions.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/keyBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/wrapperLodash.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/before.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/omitBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/rangeStepRight.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/trimCharsEnd.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/lowerFirst.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/last.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/overEvery.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/wrapperChain.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/clamp.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/path.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isBoolean.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/findLastFrom.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/pipe.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/words.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/add.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/map.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/methodOf.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/forInRight.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/assocPath.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/iteratee.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/bind.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/toLower.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/assignAll.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/toLength.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/memoize.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/bindAll.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/compact.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/toPlainObject.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/values.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/contains.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/entriesIn.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/array.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/shuffle.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/pick.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/assignIn.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/findIndexFrom.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/unionWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/math.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/assignInAll.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/object.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isNil.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/xorBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/get.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/F.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/invertObj.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/unionBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/propEq.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/date.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/drop.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/stubObject.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/dropLastWhile.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/multiply.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/T.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/sortedIndexBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/parseInt.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/pathEq.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/uniqWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/rearg.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isDate.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/findLast.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/pathOr.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/meanBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/takeRight.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/uniqBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/debounce.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/escapeRegExp.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/assignWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/set.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isNative.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/stubArray.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/method.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/symmetricDifference.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/prop.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/zipAll.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/sortBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/sortedIndexOf.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/includesFrom.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/tail.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isEqualWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/flip.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/trimCharsStart.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/_convertBrowser.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/subtract.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/omitAll.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/dropRightWhile.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isArrayLike.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/rest.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/forOwn.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isNull.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/matchesProperty.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/escape.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/valuesIn.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isObject.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/nAry.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isTypedArray.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/commit.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/reject.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/identity.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/toInteger.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/sample.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/difference.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/reduce.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/pullAt.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/extendAll.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/plant.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/overSome.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/flatMapDepth.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/uniq.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/padEnd.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/times.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/transform.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/sampleSize.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/cloneWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/spreadFrom.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/findLastIndex.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/curryRight.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/eq.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/trimStart.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/invoke.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isMatch.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/trim.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/any.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/lang.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/assign.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/anyPass.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/sortedLastIndex.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/lowerCase.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/zipObj.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/flatMap.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/apply.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isMap.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/assignInAllWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/next.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/assignAllWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/mapKeys.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/lte.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/sortedLastIndexOf.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/floor.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/wrapperAt.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/indexOf.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/startCase.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/padCharsStart.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/function.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/number.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/xorWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isArrayBuffer.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/padChars.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/toPairsIn.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/unset.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/mixin.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/each.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/symmetricDifferenceWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/delay.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/mergeAllWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/juxt.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/take.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/defaultsDeep.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/flattenDeep.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isFinite.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/rangeStep.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/toUpper.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/_baseConvert.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/curryRightN.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/union.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/eachRight.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/range.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/extendAllWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/dropRight.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/gte.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/includes.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/conforms.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/findKey.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/pluck.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/reverse.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/tap.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/sortedLastIndexBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/rangeRight.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/intersection.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/forEachRight.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/find.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/partialRight.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/conformsTo.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isNaN.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/defaults.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/zip.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/merge.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/constant.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/intersectionWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/isFunction.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/cond.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/zipObject.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/sortedUniq.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/kebabCase.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/lt.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/assignInWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/pickAll.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/pullAll.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/dissocPath.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/findLastIndexFrom.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/extend.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/first.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/indexOfFrom.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/trimChars.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/repeat.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/mapValues.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp/cloneDeepWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/takeWhile.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/overArgs.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/replace.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/value.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_castRest.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_composeArgsRight.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/stubTrue.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/toNumber.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseExtremum.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseIsEqual.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/reduceRight.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/toFinite.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseForOwnRight.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseMerge.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_reorder.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseIsTypedArray.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseIteratee.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseIsDate.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/mergeWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_arrayEachRight.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/slice.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_arraySampleSize.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/updateWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/pullAllWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_stackSet.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/has.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/seq.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/once.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_basePick.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseAssignIn.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_getAllKeys.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/flow.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/create.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isNumber.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_stackDelete.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_root.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseMatchesProperty.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_mapCacheHas.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/sum.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/nth.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_hasPath.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_castArrayLikeObject.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_getPrototype.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseGetTag.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_unescapeHtmlChar.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/padStart.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseIndexOf.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_nativeCreate.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isArrayLikeObject.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/stubString.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/forIn.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_mapCacheClear.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/unzip.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/lastIndexOf.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_apply.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_arrayEvery.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isString.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createCompounder.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_cloneBuffer.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/upperFirst.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/toString.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/omit.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseXor.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/sortedUniqBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/invert.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_strictIndexOf.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseFindKey.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/endsWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_arrayIncludes.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseLt.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_reEvaluate.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/findLastKey.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/max.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseRest.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_Map.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseReduce.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseGet.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isElement.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/castArray.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/after.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseFilter.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isEqual.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_isPrototype.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/dropWhile.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/setWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseUpdate.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseUnary.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/head.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isMatchWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createPadding.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseSortedIndexBy.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseIndexOfWith.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_getNative.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_assignValue.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_getAllKeysIn.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/split.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseSampleSize.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/throttle.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isPlainObject.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/zipWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/invokeMap.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/zipObjectDeep.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/util.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseToPairs.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_escapeStringChar.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_arrayReduceRight.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_shuffleSelf.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/partition.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseHasIn.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_hashGet.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isEmpty.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/countBy.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isObjectLike.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_stackClear.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/minBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_stringSize.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/ceil.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_nativeKeys.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/pickBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_LodashWrapper.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/entries.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fp.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/hasIn.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseIsSet.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseIsMatch.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/camelCase.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_nodeUtil.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isSet.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/core.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_customOmitClone.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/wrapperValue.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_stringToPath.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createSet.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createAggregator.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createWrap.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_shortOut.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isSymbol.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/functionsIn.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_unicodeSize.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/keysIn.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_addSetEntry.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/differenceBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/cloneDeep.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/pullAllBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/sumBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/lodash.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/wrap.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/truncate.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseMatches.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/trimEnd.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_customDefaultsMerge.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createRecurry.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_hasUnicode.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_copySymbols.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isArray.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/mean.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/toPairs.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_lazyValue.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isError.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/thru.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isBuffer.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_basePropertyOf.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createOver.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_arrayShuffle.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_listCacheGet.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/string.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createFlow.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/flowRight.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_mapToArray.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/extendWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_mapCacheGet.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/initial.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_setWrapToString.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createRange.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fill.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/package.json":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseOrderBy.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseRandom.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_matchesStrictComparable.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/xor.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/template.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseIsArrayBuffer.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseGt.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/nthArg.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/inRange.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_hashSet.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_cloneSet.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/spread.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_strictLastIndexOf.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_deburrLetter.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/flattenDepth.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseIntersection.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_mapCacheDelete.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseIsNative.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isUndefined.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/attempt.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_nativeKeysIn.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/propertyOf.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isInteger.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_listCacheSet.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/stubFalse.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/toArray.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/ary.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_realNames.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/differenceWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_equalObjects.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/join.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseRange.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_getMapData.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isWeakMap.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_defineProperty.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_parent.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_asciiSize.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_setCacheAdd.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_arrayAggregator.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/remove.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isRegExp.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/toIterator.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/findIndex.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/defer.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/index.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/at.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_getFuncName.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseIsArguments.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/valueOf.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/forOwnRight.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isWeakSet.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/some.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createInverter.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/invertBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_charsEndIndex.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/capitalize.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/noop.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseFunctions.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/negate.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseIsNaN.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseWhile.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/wrapperReverse.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseHas.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_asciiWords.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/forEach.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_getMatchData.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_overRest.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/pad.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/bindKey.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_stackGet.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/concat.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/round.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/clone.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_stackHas.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isLength.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_cloneRegExp.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/partial.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/result.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/curry.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/deburr.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/toSafeInteger.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_MapCache.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/maxBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_setToArray.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/startsWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/collection.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createBaseEach.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/unzipWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/over.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_getRawTag.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createBaseFor.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseMean.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/uniqueId.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/filter.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/now.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_escapeHtmlChar.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/gt.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/pull.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/chunk.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/divide.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/toJSON.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseClone.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_isLaziable.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/update.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isSafeInteger.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_isMasked.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/upperCase.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_isFlattenable.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_arrayPush.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/fromPairs.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseToNumber.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_isKey.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/takeRightWhile.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/unary.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/min.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseSortedUniq.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_charsStartIndex.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/toPath.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/property.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/templateSettings.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_DataView.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/size.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_isMaskable.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_castPath.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/random.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_basePullAll.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_isStrictComparable.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/unescape.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseForRight.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/without.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/flatten.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/matches.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/intersectionBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_flatRest.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/keys.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/flatMapDeep.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/defaultTo.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_getHolder.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseRepeat.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_Set.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_unicodeWords.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_WeakMap.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseShuffle.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_memoizeCapped.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_arraySample.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isArguments.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_hasUnicodeWord.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_setToPairs.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/functions.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/keyBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/wrapperLodash.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_addMapEntry.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/before.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/omitBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_Symbol.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseAggregator.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/lowerFirst.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseSlice.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/last.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_assignMergeValue.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/overEvery.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/wrapperChain.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/clamp.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isBoolean.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createRound.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/words.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/add.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createPartial.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_copyObject.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/map.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/methodOf.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createBind.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_copyArray.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/forInRight.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseZipObject.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/iteratee.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/bind.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseSortBy.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseSortedIndex.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_getTag.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/toLower.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/core.min.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/toLength.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_setToString.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/memoize.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseCreate.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/bindAll.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseIsMap.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/compact.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/toPlainObject.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_setCacheHas.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseGetAllKeys.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/values.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseSet.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/entriesIn.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseLodash.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseTimes.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/array.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/shuffle.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseSetData.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_LazyWrapper.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/pick.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_arrayMap.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/assignIn.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/unionWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/math.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/object.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isNil.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/xorBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/get.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/unionBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/date.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_updateWrapDetails.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_mergeData.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/drop.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createCtor.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/stubObject.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_listCacheHas.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/multiply.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_overArg.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_getData.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/sortedIndexBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseFlatten.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/parseInt.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_copySymbolsIn.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_mapCacheSet.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/uniqWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseKeysIn.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_hashClear.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/rearg.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_wrapperClone.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isDate.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_objectToString.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/findLast.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_cacheHas.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/meanBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/takeRight.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/uniqBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/debounce.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/escapeRegExp.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/assignWith.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_initCloneObject.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createAssigner.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_castFunction.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/set.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isNative.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_countHolders.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/stubArray.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/method.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/sortBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_SetCache.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/sortedIndexOf.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_castSlice.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseKeys.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_toKey.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseForOwn.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/tail.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseSample.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseConforms.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseNth.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_isIterateeCall.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isEqualWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseFill.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/flip.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_coreJsData.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_getView.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/subtract.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_metaMap.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/dropRightWhile.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_arrayLikeKeys.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseDelay.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isArrayLike.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/rest.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/forOwn.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseWrapperValue.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_listCacheDelete.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isNull.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_composeArgs.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/matchesProperty.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/escape.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/valuesIn.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isObject.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isTypedArray.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/commit.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/reject.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_cloneDataView.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_listCacheClear.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_cloneArrayBuffer.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/identity.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_getSymbolsIn.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/toInteger.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_isKeyable.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/sample.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/difference.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/reduce.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/pullAt.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/plant.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/overSome.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/flatMapDepth.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/uniq.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/padEnd.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/times.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseUnset.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/transform.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_iteratorToArray.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/sampleSize.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_Uint8Array.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/cloneWith.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createRelationalOperation.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_lazyClone.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseUniq.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/findLastIndex.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/curryRight.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/lodash.min.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseEachRight.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_basePropertyDeep.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/eq.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseValues.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/trimStart.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseIsRegExp.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_arrayEach.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseAt.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/invoke.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isMatch.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createCaseFirst.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/trim.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/lang.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/assign.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/sortedLastIndex.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/lowerCase.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/flatMap.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_Stack.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isMap.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/next.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_freeGlobal.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_unicodeToArray.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_cloneSymbol.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_compareMultiple.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseAssign.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/mapKeys.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseInRange.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/lte.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/sortedLastIndexOf.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_initCloneArray.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/floor.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createMathOperation.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/wrapperAt.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_ListCache.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_assocIndexOf.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_setData.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_asciiToArray.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/indexOf.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseToString.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_cloneMap.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/startCase.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/function.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/number.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseIsEqualDeep.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/xorWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isArrayBuffer.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createToPairs.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseInverter.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/toPairsIn.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/unset.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_replaceHolders.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/mixin.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/each.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/delay.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseClamp.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/take.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/defaultsDeep.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/flattenDeep.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isFinite.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_compareAscending.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/toUpper.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_insertWrapDetails.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/union.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_getValue.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/eachRight.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/range.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_reEscape.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/dropRight.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_getWrapDetails.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_Promise.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseInvoke.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/gte.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/includes.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/conforms.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/findKey.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseProperty.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_equalByTag.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/reverse.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/tap.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_getSymbols.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/sortedLastIndexBy.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/rangeRight.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/intersection.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/forEachRight.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/find.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseSome.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_arrayFilter.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/partialRight.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_toSource.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_arrayIncludesWith.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/conformsTo.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isNaN.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseMap.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/defaults.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_customDefaultsAssignIn.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_createHybrid.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/zip.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/merge.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/constant.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/intersectionWith.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/isFunction.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/cond.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/zipObject.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/sortedUniq.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_basePullAt.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_hashDelete.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/kebabCase.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/lt.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_arraySome.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/assignInWith.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseMergeDeep.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_Hash.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_baseEvery.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/pullAll.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_hashHas.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_isIndex.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_basePickBy.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/extend.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/first.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_stringToArray.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/repeat.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_reInterpolate.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/mapValues.js":["",1483223561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_lazyReverse.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/cloneDeepWith.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/lodash/_arrayReduce.js":["",1483223560000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-test-renderer/stack.js":["",1493759851000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-test-renderer/cjs/react-test-renderer-stack.development.js":["",1493759854000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-test-renderer/cjs/react-test-renderer.development.js":["",1493759851000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-test-renderer/cjs/react-test-renderer-shallow.development.js":["",1493759855000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-test-renderer/shallow.js":["",1493759851000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-test-renderer/package.json":["",1493759851000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-test-renderer/index.js":["",1493759851000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/ansi-styles/package.json":["",1459197347000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/ansi-styles/index.js":["",1459197140000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/has-ansi/package.json":["",1435681064000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/has-ansi/index.js":["",1402774137000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/xhr-sync-worker.js":["",1489341445000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSelectElement-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBodyElement-impl.js":["",1488085882000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/DocumentType-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/ElementContentEditable-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDataElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLQuoteElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLInputElement-impl.js":["",1487627699000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/NonDocumentTypeChildNode-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLCanvasElement-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOListElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSourceElement-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOutputElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLIFrameElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLParamElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/ProcessingInstruction-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDListElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableCaptionElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHRElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMetaElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLPreElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/CharacterData-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLEmbedElement-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHtmlElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTrackElement-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/ParentNode-impl.js":["",1472933098000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMenuElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAppletElement-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSpanElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMediaElement-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAnchorElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/DocumentFragment-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/Text-impl.js":["",1482107149000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/GlobalEventHandlers-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLModElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLIElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/NonElementParentNode-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDataListElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTitleElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDialogElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDivElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLScriptElement-impl.js":["",1482091713000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFrameSetElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBaseElement-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/ElementCSSInlineStyle-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLProgressElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/XMLDocument-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/Document-impl.js":["",1489348951000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/DOMImplementation-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLegendElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTimeElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTemplateElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLParagraphElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/CDATASection-impl.js":["",1485727387000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/LinkStyle-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAudioElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAreaElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLStyleElement-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLImageElement-impl.js":["",1487635599000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFrameElement-impl.js":["",1482091713000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFieldSetElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFontElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHeadingElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/WindowEventHandlers-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLUnknownElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLinkElement-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js":["",1482107149000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableRowElement-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/Element-impl.js":["",1487627699000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableColElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDirectoryElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLObjectElement-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLElement-impl.js":["",1487627699000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableDataCellElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTextAreaElement-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLabelElement-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableCellElement-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptGroupElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptionElement-impl.js":["",1489348951000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/Comment-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableElement-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMeterElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/Node-impl.js":["",1485727387000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLUListElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableHeaderCellElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHeadElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/ChildNode-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLButtonElement-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMapElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHyperlinkElementUtils-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLVideoElement-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBRElement-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/node.js":["",1485727387000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/node-iterator.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/dom-token-list.js":["",1482091713000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/domparsing/DOMParser-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/form-data-symbols.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/named-properties-window.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/helpers/stylesheets.js":["",1482091713000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/helpers/runtime-script-errors.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/helpers/document-base-url.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/helpers/internal-constants.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/helpers/focusing.js":["",1482091713000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/helpers/validate-names.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/helpers/form-controls.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/helpers/selectors.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/helpers/ordered-set-parser.js":["",1482091713000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/helpers/traversal.js":["",1485727387000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/helpers/proxied-window-event-handlers.js":["",1442354524000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/helpers/strings.js":["",1489348951000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/file-api/Blob-impl.js":["",1487627699000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/file-api/File-impl.js":["",1487627699000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/file-api/FileList-impl.js":["",1487627699000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/file-api/FileReader-impl.js":["",1487627699000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/node-document-position.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/index.js":["",1487627699000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/attributes.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/events/CustomEvent-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/events/UIEvent-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js":["",1482107149000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/events/MouseEvent-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/events/ProgressEvent-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/events/PopStateEvent-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/events/KeyboardEvent-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/events/ErrorEvent-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/events/FocusEvent-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/events/MessageEvent-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/events/TouchEvent-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/events/Event-impl.js":["",1489348951000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/events/HashChangeEvent-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLScriptElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/ProcessingInstruction.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/KeyboardEvent.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/KeyboardEventInit.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLStyleElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLSelectElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLDataListElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLVideoElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/File.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/XMLDocument.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/History.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/TreeWalker.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptionElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/ScrollIntoViewOptions.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLTemplateElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/CDATASection.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/BlobPropertyBag.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableRowElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HashChangeEvent.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLPreElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLAppletElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLLegendElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLDataElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/FileList.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLUnknownElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/NavigatorLanguage.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLLabelElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/Element.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/CustomEventInit.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLProgressElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/PopStateEvent.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLMeterElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLOListElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLLIElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/FocusEventInit.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/ScrollOptions.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLHeadElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLFormElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/UIEvent.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/Attr.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/CharacterData.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/MessageEvent.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/Location.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLFrameSetElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLMapElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLFieldSetElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLAreaElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/WindowEventHandlers.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/DOMImplementation.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLDivElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/LinkStyle.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/EventListenerOptions.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLModElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/ElementCSSInlineStyle.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/NavigatorPlugins.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLMenuElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLAnchorElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLFrameElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/Event.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/ErrorEvent.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/FormData.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLInputElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLUListElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/ErrorEventInit.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/utils.js":["",1489350357000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HashChangeEventInit.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/EventModifierInit.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLLinkElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/Text.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLImageElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLOutputElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLSourceElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLBodyElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLMetaElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptGroupElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLDialogElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLTextAreaElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/AddEventListenerOptions.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/CustomEvent.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/ChildNode.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/NavigatorID.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLHRElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLHtmlElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/ElementContentEditable.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/NavigatorCookies.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLMediaElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLDirectoryElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLAudioElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLIFrameElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLButtonElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLParagraphElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/MouseEvent.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLFontElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLEmbedElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/FileReader.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/TouchEvent.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableSectionElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/UIEventInit.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLHeadingElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLHyperlinkElementUtils.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/EventInit.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/DOMParser.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLCanvasElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/NonDocumentTypeChildNode.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/Comment.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLObjectElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableCellElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/DocumentFragment.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/ParentNode.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLTitleElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLBRElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/Node.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLBaseElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/FocusEvent.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/Navigator.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableColElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/GlobalEventHandlers.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLTimeElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/Blob.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLParamElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/ProgressEventInit.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/NavigatorConcurrentHardware.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableCaptionElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/MessageEventInit.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLSpanElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/ProgressEvent.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLTrackElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLQuoteElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/MouseEventInit.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/FilePropertyBag.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/NonElementParentNode.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/Document.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/NavigatorOnLine.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableDataCellElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/PopStateEventInit.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableHeaderCellElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLDListElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/MutationEvent.js":["",1462148396000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableElement.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/generated/DocumentType.js":["",1489350358000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/node-filter.js":["",1445118247000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/node-list.js":["",1486153642000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/xmlhttprequest.js":["",1489341445000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/xmlhttprequest-upload.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/register-elements.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/xmlhttprequest-event-target.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/xhr-utils.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/xhr/FormData-impl.js":["",1487627699000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/node-type.js":["",1442354525000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/traversal/TreeWalker-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/post-message.js":["",1445118247000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/html-collection.js":["",1485727387000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/attributes/Attr-impl.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/navigator/Navigator-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorPlugins-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorLanguage-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorOnLine-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorConcurrentHardware-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorID-impl.js":["",1486153642000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorCookies-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/window/navigation.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/window/History-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/window/Location-impl.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/living/xmlhttprequest-symbols.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/browser/htmltodom.js":["",1489341445000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/browser/documentAdapter.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/browser/not-implemented.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/browser/Window.js":["",1489350078000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/browser/documentfeatures.js":["",1489341445000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/browser/resource-loader.js":["",1489341445000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/browser/default-stylesheet.js":["",1442354524000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/browser/domtohtml.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/vm-shim.js":["",1489341445000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/web-idl/dom-exception-table.json":["",1442354525000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/web-idl/DOMException.js":["",1464500473000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/level2/style.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/utils.js":["",1489348951000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/named-properties-tracker.js":["",1445118247000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/virtual-console.js":["",1489341445000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom/level3/xpath.js":["",1476562424000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/lib/jsdom.js":["",1489348951000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jsdom/package.json":["",1489350307000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/lib/terminalUtils.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/lib/createContext.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/lib/Prompt.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/lib/isValidPath.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/lib/scrollList.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/lib/getTestPathPattern.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/lib/patternModeHelpers.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/lib/updateArgv.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/lib/BufferedConsole.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/lib/formatTestNameByPattern.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/lib/validatePattern.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/lib/highlight.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/lib/logDebugMessages.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/lib/handleDeprecationWarnings.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/lib/getMaxWorkers.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/lib/colorize.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/TestWatcher.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/runJest.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/runTest.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/jest.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/preRunMessage.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/cli/args.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/cli/getJest.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/cli/index.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/cli/runCLI.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/watch.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/reporters/getResultHeader.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/reporters/getConsoleOutput.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/reporters/DefaultReporter.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/reporters/BaseReporter.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/reporters/CoverageWorker.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/reporters/VerboseReporter.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/reporters/utils.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/reporters/NotifyReporter.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/reporters/Status.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/reporters/CoverageReporter.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/reporters/SummaryReporter.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/generateEmptyCoverage.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/PatternPrompt.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/TestNamePatternPrompt.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/TestPathPatternPrompt.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/constants.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/SearchSource.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/assets/jest_logo.png":["",1495635161000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/TestRunner.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/TestSequencer.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/ReporterDispatcher.js":["",1495635156000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/build/TestWorker.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/package.json":["",1495635211000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-cli/bin/jest.js":["",1494584416000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/yargs.js":["",1492117747000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/lib/levenshtein.js":["",1483945339000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/lib/yerror.js":["",1488566201000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/lib/apply-extends.js":["",1488566201000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/lib/argsert.js":["",1488566201000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/lib/usage.js":["",1488566201000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/lib/validation.js":["",1489111544000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/lib/completion.js":["",1488566201000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/lib/command.js":["",1489088075000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/lib/assign.js":["",1483821845000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/lib/obj-filter.js":["",1483945343000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/package.json":["",1492117761000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/index.js":["",1490598608000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/locales/nl.json":["",1483821845000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/locales/es.json":["",1483821845000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/locales/nb.json":["",1483821845000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/locales/ko.json":["",1483821845000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/locales/de.json":["",1483821845000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/locales/pt.json":["",1487441549000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/locales/hu.json":["",1483821845000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/locales/fr.json":["",1483821845000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/locales/hi.json":["",1483821845000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/locales/pirate.json":["",1483821845000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/locales/ru.json":["",1483821845000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/locales/zh_CN.json":["",1483821845000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/locales/th.json":["",1483821845000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/locales/pl.json":["",1483821845000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/locales/en.json":["",1487441549000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/locales/zh_TW.json":["",1487442385000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/locales/tr.json":["",1483821845000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/locales/id.json":["",1483821845000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/locales/ja.json":["",1483821845000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/locales/be.json":["",1483821845000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/locales/it.json":["",1483821845000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs/locales/pt_BR.json":["",1487441549000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/camelcase/package.json":["",1462383203000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/camelcase/index.js":["",1462383174000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/tr46/lib/mappingTable.json":["",1453255726000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/tr46/package.json":["",1453255694000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/tr46/index.js":["",1453255442000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/escodegen/package.json":["",1504888392000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/escodegen/escodegen.js":["",1504888379000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/escodegen/bin/esgenerate.js":["",1430234946000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/escodegen/bin/escodegen.js":["",1430234946000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/bser/package.json":["",1440518626000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/bser/test/bser.js":["",1440516186000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/bser/index.js":["",1440516186000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-config/build/reporterValidationErrors.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-config/build/normalize.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-config/build/setFromArgv.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-config/build/findConfig.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-config/build/index.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-config/build/utils.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-config/build/validConfig.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-config/build/constants.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-config/build/deprecated.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-config/build/defaults.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-config/build/vendor/jsonlint.js":["",1495635157000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-config/package.json":["",1495635211000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/babel-preset-react-native/lib/resolvePlugins.js":["",1500025190000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/babel-preset-react-native/configs/main.js":["",1502961879000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/babel-preset-react-native/configs/hmr.js":["",1500025190000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/babel-preset-react-native/package.json":["",1503393676000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/babel-preset-react-native/index.js":["",1500025190000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/babel-preset-react-native/plugins.js":["",1502807341000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/babel-preset-react-native/transforms/transform-dynamic-import.js":["",1502903056000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/babel-preset-react-native/transforms/transform-regenerator-runtime-insertion.js":["",1500025190000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/babel-preset-react-native/transforms/transform-symbol-member.js":["",1500025190000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-dom/server.js":["",1493759787000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-dom/cjs/react-dom-test-utils.development.js":["",1493759809000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-dom/cjs/react-dom-server.development.js":["",1493759820000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-dom/cjs/react-dom.production.min.js":["",1493759800000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-dom/cjs/react-dom-server.production.min.js":["",1493759824000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-dom/cjs/react-dom.development.js":["",1493759796000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-dom/test-utils.js":["",1493759787000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-dom/package.json":["",1493759787000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-dom/umd/react-dom-server.development.js":["",1493759813000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-dom/umd/react-dom.production.min.js":["",1493759792000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-dom/umd/react-dom-server.production.min.js":["",1493759817000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-dom/umd/react-dom.development.js":["",1493759787000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-dom/index.js":["",1493759787000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-dom/node_modules/prop-types/lib/ReactPropTypesSecret.js":["",1506382846000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-dom/node_modules/prop-types/checkPropTypes.js":["",1506382846000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-dom/node_modules/prop-types/factory.js":["",1506382846000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-dom/node_modules/prop-types/package.json":["",1506383031000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-dom/node_modules/prop-types/factoryWithThrowingShims.js":["",1506382846000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-dom/node_modules/prop-types/index.js":["",1506382846000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-dom/node_modules/prop-types/factoryWithTypeCheckers.js":["",1506382846000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-dom/node_modules/prop-types/prop-types.js":["",1506383084000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/react-dom/node_modules/prop-types/prop-types.min.js":["",1506383085000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-snapshot/build/index.js":["",1495014561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-snapshot/build/plugins.js":["",1495014561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-snapshot/build/utils.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-snapshot/build/State.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-snapshot/package.json":["",1495018620000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/build/ScriptTransformer.js":["",1495635159000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/build/index.js":["",1495635159000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/build/cli/args.js":["",1495635159000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/build/cli/index.js":["",1495635159000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/build/shouldInstrument.js":["",1495635159000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/package.json":["",1495635211000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/api/node.js":["",1502898493000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/api/browser.js":["",1502898493000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/util.js":["",1502898478000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/store.js":["",1502898478000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/helpers/resolve-from-possible-names.js":["",1502898493000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/helpers/normalize-ast.js":["",1502898493000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/helpers/resolve.js":["",1502898494000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/helpers/resolve-preset.js":["",1502898494000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/helpers/get-possible-plugin-names.js":["",1502898493000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/helpers/get-possible-preset-names.js":["",1502898493000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/helpers/resolve-plugin.js":["",1502898493000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/helpers/merge.js":["",1502898493000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/tools/build-external-helpers.js":["",1502898493000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/transformation/plugin.js":["",1502898494000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/transformation/file/options/index.js":["",1502898494000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/transformation/file/options/parsers.js":["",1502898494000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/transformation/file/options/config.js":["",1502898494000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/transformation/file/options/removed.js":["",1502898494000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/transformation/file/options/option-manager.js":["",1502898494000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/transformation/file/options/build-config-chain.js":["",1502898494000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/transformation/file/index.js":["",1502898494000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/transformation/file/metadata.js":["",1502898494000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/transformation/file/logger.js":["",1502898494000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/transformation/internal-plugins/shadow-functions.js":["",1502898494000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/transformation/internal-plugins/block-hoist.js":["",1502898494000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/transformation/pipeline.js":["",1502898494000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/lib/transformation/plugin-pass.js":["",1502898494000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/package.json":["",1502898847000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/index.js":["",1489370908000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/package-lock.json":["",1502829209000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/node_modules/babel-core/register.js":["",1489370908000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-runtime/bin/jest-runtime.js":["",1494584416000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/supports-color/package.json":["",1435705110000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/supports-color/index.js":["",1435362323000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-util/build/NullConsole.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-util/build/validateCLIOptions.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-util/build/setGlobal.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-util/build/installCommonGlobals.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-util/build/FakeTimers.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-util/build/index.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-util/build/Console.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-util/build/formatTestResults.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-util/build/clearLine.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-util/build-es5/NullConsole.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-util/build-es5/validateCLIOptions.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-util/build-es5/setGlobal.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-util/build-es5/installCommonGlobals.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-util/build-es5/FakeTimers.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-util/build-es5/index.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-util/build-es5/Console.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-util/build-es5/formatTestResults.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-util/build-es5/clearLine.js":["",1495014562000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-util/package.json":["",1495018620000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-changed-files/build/index.js":["",1495014557000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-changed-files/build/hg.js":["",1495014557000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-changed-files/build/git.js":["",1495014557000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-changed-files/package.json":["",1495018620000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs-parser/lib/tokenize-arg-string.js":["",1487447876000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs-parser/package.json":["",1487447876000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/yargs-parser/index.js":["",1487447876000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/pify/package.json":["",1445865370000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/pify/index.js":["",1445864677000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-jasmine2/build/ExpectationFailed.js":["",1495635158000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-jasmine2/build/p-timeout.js":["",1495635158000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-jasmine2/build/jasmine/Suite.js":["",1495635158000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-jasmine2/build/jasmine/createSpy.js":["",1495635158000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-jasmine2/build/jasmine/JsApiReporter.js":["",1495635158000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-jasmine2/build/jasmine/SpyRegistry.js":["",1495635158000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-jasmine2/build/jasmine/Spec.js":["",1495635158000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-jasmine2/build/jasmine/ReportDispatcher.js":["",1495635158000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-jasmine2/build/jasmine/jasmine-light.js":["",1495635158000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-jasmine2/build/jasmine/Env.js":["",1495635158000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-jasmine2/build/jasmine/Timer.js":["",1495635158000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-jasmine2/build/jasmine/CallTracker.js":["",1495635158000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-jasmine2/build/jest-expect.js":["",1495635158000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-jasmine2/build/jasmine/SpyStrategy.js":["",1495635158000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-jasmine2/build/index.js":["",1495635158000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-jasmine2/build/setup-jest-globals.js":["",1495635158000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-jasmine2/build/reporter.js":["",1495635158000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-jasmine2/build/queueRunner.js":["",1495635158000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-jasmine2/build/assert-support.js":["",1495635158000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-jasmine2/build/jasmine-async.js":["",1495635158000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-jasmine2/build/expectationResultFactory.js":["",1495635158000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-jasmine2/build/treeProcessor.js":["",1495635158000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-environment-jsdom/build/index.js":["",1495014559000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-environment-jsdom/package.json":["",1495018620000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-jasmine2/package.json":["",1495635211000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/string-length/package.json":["",1437081365000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/string-length/index.js":["",1437081175000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-environment-node/build/index.js":["",1495014559000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-environment-node/package.json":["",1495018620000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/which-module/package.json":["",1465191143000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/which-module/index.js":["",1465174258000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/whatwg-url/lib/URL.js":["",1494442600000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/whatwg-url/lib/public-api.js":["",1455124772000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/whatwg-url/lib/url-state-machine.js":["",1494442600000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/whatwg-url/lib/utils.js":["",1494442600000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/whatwg-url/lib/URL-impl.js":["",1487785600000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/whatwg-url/package.json":["",1494442584000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/whatwg-url/node_modules/webidl-conversions/lib/index.js":["",1451887598000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/whatwg-url/node_modules/webidl-conversions/package.json":["",1451887643000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/parse5/lib/tokenization/location_info_mixin.js":["",1448751685000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/parse5/lib/tokenization/named_entity_trie.js":["",1448751685000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/parse5/lib/tokenization/tokenizer.js":["",1448751685000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/parse5/lib/tokenization/preprocessor.js":["",1448751685000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/parse5/lib/tree_adapters/htmlparser2.js":["",1448751685000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/parse5/lib/tree_adapters/default.js":["",1448751685000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/parse5/lib/jsdom/parsing_unit.js":["",1448751685000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/parse5/lib/jsdom/jsdom_parser.js":["",1448751685000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/parse5/lib/serialization/serializer.js":["",1448751685000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/parse5/lib/simple_api/tokenizer_proxy.js":["",1448751685000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/parse5/lib/simple_api/simple_api_parser.js":["",1448751685000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/parse5/lib/tree_construction/open_element_stack.js":["",1448751685000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/parse5/lib/tree_construction/location_info_mixin.js":["",1448751685000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/parse5/lib/tree_construction/formatting_element_list.js":["",1448751685000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/parse5/lib/tree_construction/parser.js":["",1448751685000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/parse5/lib/common/foreign_content.js":["",1448751685000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/parse5/lib/common/utils.js":["",1448751685000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/parse5/lib/common/doctype.js":["",1448751685000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/parse5/lib/common/html.js":["",1448751685000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/parse5/lib/common/unicode.js":["",1448751685000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/parse5/package.json":["",1448751685000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/parse5/index.js":["",1448751685000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-diff/build/index.js":["",1495014559000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-diff/build/diffStrings.js":["",1495014559000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-diff/build/constants.js":["",1495014559000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-diff/build-es5/diffStrings.js":["",1495014559000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-diff/build-es5/index.js":["",1495014559000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-diff/build-es5/constants.js":["",1495014559000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-diff/package.json":["",1495018620000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/prop-types/lib/ReactPropTypesSecret.js":["",1519255688000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/prop-types/checkPropTypes.js":["",1519255688000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/prop-types/package.json":["",1519685497000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/prop-types/factoryWithThrowingShims.js":["",1519255688000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/prop-types/factory.js":["",1519255688000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/prop-types/index.js":["",1519255688000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/prop-types/factoryWithTypeCheckers.js":["",1519255688000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/prop-types/prop-types.js":["",1519685502000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/prop-types/prop-types.min.js":["",1519685503000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-resolve-dependencies/build/index.js":["",1495014561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-resolve-dependencies/package.json":["",1495018620000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-mock/build/index.js":["",1495014561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-mock/build-es5/index.js":["",1495014561000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-mock/package.json":["",1495018620000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-resolve/build/index.js":["",1495635159000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-resolve/build/defaultResolver.js":["",1495635159000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/node_modules/jest-resolve/package.json":["",1495635211000,0,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png":["",1526059376366,1,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/android/app/src/main/res/mipmap-hdpi/ic_launcher.png":["",1526059376366,1,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/android/app/src/main/res/mipmap-mdpi/ic_launcher.png":["",1526059376366,1,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png":["",1526059376366,1,[]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/index.android.js":["",1526059376366,1,["react","react-native"]],"/home/kliment/Projects/storybook/lib/cli/test/run/react_native/app.json":["",1526059376366,1,[]]},"map":{"react-native-fixture":{"g":["/home/kliment/Projects/storybook/lib/cli/test/run/react_native/package.json",1]}},"mocks":{}} \ No newline at end of file diff --git a/lib/cli/test/snapshots/meteor/package.json b/lib/cli/test/snapshots/meteor/package.json index 21d45d896bd..7d64298af7f 100644 --- a/lib/cli/test/snapshots/meteor/package.json +++ b/lib/cli/test/snapshots/meteor/package.json @@ -15,7 +15,7 @@ }, "devDependencies": { "babel-core": "^6.26.3", - "babel-preset-env": "^1.6.1", + "babel-preset-env": "^1.7.0", "babel-preset-react": "^6.24.1", "babel-preset-stage-1": "^6.24.1", "babel-root-slash-import": "^1.1.0", From f7795984c12bfa0c08237749fcc785177f5f4f87 Mon Sep 17 00:00:00 2001 From: Hypnosphi Date: Sat, 12 May 2018 03:28:39 +0300 Subject: [PATCH 018/143] Support supscriptions & force render in RN --- .../src/preview/components/StoryView/index.js | 3 +++ app/react-native/src/preview/index.js | 5 +++++ .../storybook/stories/Knobs/index.js | 6 +++--- lib/channel-postmessage/src/index.js | 1 - lib/channels/src/index.js | 11 ++++++----- lib/core/src/client/preview/client_api.js | 19 ++++++++++++++++++- lib/core/src/client/preview/start.js | 4 ---- 7 files changed, 35 insertions(+), 14 deletions(-) diff --git a/app/react-native/src/preview/components/StoryView/index.js b/app/react-native/src/preview/components/StoryView/index.js index dc056e14adb..44abf486f28 100644 --- a/app/react-native/src/preview/components/StoryView/index.js +++ b/app/react-native/src/preview/components/StoryView/index.js @@ -10,12 +10,15 @@ export default class StoryView extends Component { this.state = { storyFn: null, selection: {} }; this.storyHandler = this.selectStory.bind(this); + this.forceRender = this.forceUpdate.bind(this); this.props.events.on(Events.SELECT_STORY, this.storyHandler); + this.props.events.on(Events.FORCE_RE_RENDER, this.forceRender); } componentWillUnmount() { this.props.events.removeListener(Events.SELECT_STORY, this.storyHandler); + this.props.events.removeListener(Events.FORCE_RE_RENDER, this.forceRender); } selectStory(storyFn, selection) { diff --git a/app/react-native/src/preview/index.js b/app/react-native/src/preview/index.js index 6e7a58d80e7..eaf857f9372 100644 --- a/app/react-native/src/preview/index.js +++ b/app/react-native/src/preview/index.js @@ -69,6 +69,7 @@ export default class Preview { } channel.on(Events.GET_STORIES, () => this._sendSetStories()); channel.on(Events.SET_CURRENT_STORY, d => this._selectStory(d)); + channel.on(Events.FORCE_RE_RENDER, () => this._forceRender()); this._events.on(Events.SET_CURRENT_STORY, d => this._selectStory(d)); this._sendSetStories(); this._sendGetCurrentStory(); @@ -98,4 +99,8 @@ export default class Preview { const storyFn = this._stories.getStoryWithContext(kind, story); this._events.emit(Events.SELECT_STORY, storyFn, selection); } + + _forceRender() { + this._events.emit(Events.FORCE_RE_RENDER); + } } diff --git a/examples/crna-kitchen-sink/storybook/stories/Knobs/index.js b/examples/crna-kitchen-sink/storybook/stories/Knobs/index.js index 776fb1eb572..7ca828cadd8 100644 --- a/examples/crna-kitchen-sink/storybook/stories/Knobs/index.js +++ b/examples/crna-kitchen-sink/storybook/stories/Knobs/index.js @@ -16,9 +16,9 @@ export default () => { const name = text('Name', 'Storyteller'); const age = number('Age', 70, { range: true, min: 0, max: 90, step: 5 }); const fruits = { - apple: 'Apple', - banana: 'Banana', - cherry: 'Cherry', + Apple: 'apple', + Banana: 'banana', + Cherry: 'cherry', }; const fruit = select('Fruit', fruits, 'apple'); const dollars = number('Dollars', 12.5); diff --git a/lib/channel-postmessage/src/index.js b/lib/channel-postmessage/src/index.js index e8497bd9013..2395164de92 100644 --- a/lib/channel-postmessage/src/index.js +++ b/lib/channel-postmessage/src/index.js @@ -32,7 +32,6 @@ export class PostmsgTransport { } const data = stringify({ key: KEY, event }); iframeWindow.postMessage(data, '*'); - this._handler(event); return Promise.resolve(null); } diff --git a/lib/channels/src/index.js b/lib/channels/src/index.js index ca07dc95898..bae6bd48854 100644 --- a/lib/channels/src/index.js +++ b/lib/channels/src/index.js @@ -4,7 +4,7 @@ export default class Channel { constructor({ transport }) { this._sender = this._randomId(); this._transport = transport; - this._transport.setHandler(this._handleEvent.bind(this)); + this._transport.setHandler(event => this._handleEvent(event)); this._listeners = {}; } @@ -14,13 +14,14 @@ export default class Channel { addPeerListener(type, listener) { const peerListener = listener; - peerListener.isPeer = from => from === this._sender; + peerListener.ignorePeer = true; this.on(type, peerListener); } emit(type, ...args) { const event = { type, args, from: this._sender }; this._transport.send(event); + this._handleEvent(event, true); } eventNames() { @@ -78,10 +79,10 @@ export default class Channel { .slice(2); } - _handleEvent(event) { + _handleEvent(event, isPeer) { const listeners = this._listeners[event.type]; - if (listeners) { - listeners.forEach(fn => !(fn.isPeer && fn.isPeer(event.from)) && fn(...event.args)); + if (listeners && (isPeer || event.from !== this._sender)) { + listeners.forEach(fn => !(isPeer && fn.ignorePeer) && fn(...event.args)); } } diff --git a/lib/core/src/client/preview/client_api.js b/lib/core/src/client/preview/client_api.js index c63cbfd4e0a..4c0a75998ed 100644 --- a/lib/core/src/client/preview/client_api.js +++ b/lib/core/src/client/preview/client_api.js @@ -1,8 +1,11 @@ /* eslint no-underscore-dangle: 0 */ import { logger } from '@storybook/client-logger'; +import addons from '@storybook/addons'; +import Events from '@storybook/core-events'; import StoryStore from './story_store'; +import subscriptionsStore from './subscriptions_store'; const defaultDecorateStory = (getStory, decorators) => decorators.reduce( @@ -10,6 +13,20 @@ const defaultDecorateStory = (getStory, decorators) => getStory ); +const metaSubscription = () => { + addons.getChannel().on(Events.REGISTER_SUBSCRIPTION, subscriptionsStore.register); + return () => + addons.getChannel().removeListener(Events.REGISTER_SUBSCRIPTION, subscriptionsStore.register); +}; + +const withSubscriptionTracking = storyFn => { + subscriptionsStore.markAllAsUnused(); + subscriptionsStore.register(metaSubscription); + const result = storyFn(); + subscriptionsStore.clearUnused(); + return result; +}; + export default class ClientApi { constructor({ storyStore = new StoryStore(), decorateStory = defaultDecorateStory } = {}) { this._storyStore = storyStore; @@ -83,7 +100,7 @@ export default class ClientApi { // Wrap the getStory function with each decorator. The first // decorator will wrap the story function. The second will // wrap the first decorator and so on. - const decorators = [...localDecorators, ...this._globalDecorators]; + const decorators = [...localDecorators, ...this._globalDecorators, withSubscriptionTracking]; const fileName = m ? m.filename : null; diff --git a/lib/core/src/client/preview/start.js b/lib/core/src/client/preview/start.js index b435f84b29e..eadc2f00e7a 100644 --- a/lib/core/src/client/preview/start.js +++ b/lib/core/src/client/preview/start.js @@ -12,7 +12,6 @@ import ConfigApi from './config_api'; import reducer from './reducer'; import * as Actions from './actions'; import syncUrlWithStore from './syncUrlWithStore'; -import subscriptionsStore from './subscriptions_store'; const classes = { MAIN: 'sb-show-main', @@ -87,7 +86,6 @@ export default function start(render, { decorateStory } = {}) { channel.on(Events.SET_CURRENT_STORY, data => { reduxStore.dispatch(Actions.selectStory(data.kind, data.story)); }); - channel.on(Events.REGISTER_SUBSCRIPTION, subscriptionsStore.register); addons.setChannel(channel); Object.assign(context, { channel }); @@ -147,7 +145,6 @@ export default function start(render, { decorateStory } = {}) { previousKind = selectedKind; previousStory = selectedStory; - subscriptionsStore.markAllAsUnused(); render({ ...context, story, @@ -167,7 +164,6 @@ export default function start(render, { decorateStory } = {}) { } try { renderMain(forceRender); - subscriptionsStore.clearUnused(); addons.getChannel().emit(Events.STORY_RENDERED); } catch (ex) { showException(ex); From 3475f431ade5fd722cb22ba602862acaa72bd871 Mon Sep 17 00:00:00 2001 From: klimentru1986 Date: Sat, 12 May 2018 08:52:17 +0300 Subject: [PATCH 019/143] rename centeredAng to ngCentered --- addons/centered/README.md | 8 ++++---- addons/centered/src/index.js | 2 +- .../angular-cli/src/stories/addon-centered.stories.ts | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/addons/centered/README.md b/addons/centered/README.md index 8eccfd8e566..cb18559790d 100644 --- a/addons/centered/README.md +++ b/addons/centered/README.md @@ -77,12 +77,12 @@ storiesOf('MyComponent', module) example for Angular with component: ```ts -import { centeredAng } from '@storybook/addon-centered'; +import { ngCentered } from '@storybook/addon-centered'; import { storiesOf } from '@storybook/angular'; import { AppComponent } from '../app/app.component'; storiesOf('Addon|Centered', module) - .addDecorator(centeredAng) + .addDecorator(ngCentered) .add('centered component', () => ({ component: AppComponent, props: {}, @@ -93,7 +93,7 @@ storiesOf('Addon|Centered', module) example for Angular with template: ```ts -import { centeredAng } from '@storybook/addon-centered'; +import { ngCentered } from '@storybook/addon-centered'; import { moduleMetadata, storiesOf } from '@storybook/angular'; import { AppComponent } from '../app/app.component'; @@ -103,7 +103,7 @@ storiesOf('Addon|Centered', module) declarations: [Button], }) ) - .addDecorator(centeredAng) + .addDecorator(ngCentered) .add('centered template', () => ({ template: ` diff --git a/addons/centered/src/index.js b/addons/centered/src/index.js index 8891e1fa6e9..e6738871e00 100644 --- a/addons/centered/src/index.js +++ b/addons/centered/src/index.js @@ -6,4 +6,4 @@ import AngularCentered from './angular'; const Centered = window.STORYBOOK_ENV === 'vue' ? VueCentered : ReactCentered; export default Centered; -export const centeredAng = AngularCentered; +export const ngCentered = AngularCentered; diff --git a/examples/angular-cli/src/stories/addon-centered.stories.ts b/examples/angular-cli/src/stories/addon-centered.stories.ts index 50811c15288..9d7308ad828 100644 --- a/examples/angular-cli/src/stories/addon-centered.stories.ts +++ b/examples/angular-cli/src/stories/addon-centered.stories.ts @@ -1,10 +1,10 @@ -import { centeredAng } from '@storybook/addon-centered'; +import { ngCentered } from '@storybook/addon-centered'; import { moduleMetadata, storiesOf } from '@storybook/angular'; import { Button } from '@storybook/angular/demo'; import { AppComponent } from '../app/app.component'; storiesOf('Addon|Centered', module) - .addDecorator(centeredAng) + .addDecorator(ngCentered) .add('centered component', () => ({ component: AppComponent, props: {}, @@ -16,7 +16,7 @@ storiesOf('Addon|Centered', module) declarations: [Button], }) ) - .addDecorator(centeredAng) + .addDecorator(ngCentered) .add('centered template', () => ({ template: ``, props: { From b94155ecd4a05793cb5a1bf4d302f90aba31941b Mon Sep 17 00:00:00 2001 From: Hypnosphi Date: Sat, 12 May 2018 18:17:00 +0300 Subject: [PATCH 020/143] Fix tests --- addons/storyshots/src/index.js | 5 +++- .../addon-centered.stories.storyshot | 18 +++++++---- .../custom-decorators.stories.storyshot | 30 ++++++++++++------- lib/addons/src/index.js | 4 +++ lib/channels/src/index.test.js | 11 ++++++- lib/core/src/client/preview/client_api.js | 1 + 6 files changed, 51 insertions(+), 18 deletions(-) diff --git a/addons/storyshots/src/index.js b/addons/storyshots/src/index.js index 6d04b800d26..1abbf130924 100644 --- a/addons/storyshots/src/index.js +++ b/addons/storyshots/src/index.js @@ -1,6 +1,6 @@ import fs from 'fs'; import glob from 'glob'; -import global, { describe, it } from 'global'; +import global, { document, describe, it } from 'global'; import addons, { mockChannel } from '@storybook/addons'; import loadFramework from './frameworkLoader'; import getIntegrityOptions from './getIntegrityOptions'; @@ -35,6 +35,9 @@ export default function testStorySnapshots(options = {}) { } addons.setChannel(mockChannel()); + const rootEl = document.createElement('div'); + rootEl.setAttribute('id', 'root'); + document.body.appendChild(rootEl); const { storybook, framework, renderTree, renderShallowTree } = loadFramework(options); const stories = storybook.getStorybook(); diff --git a/examples/vue-kitchen-sink/src/stories/__snapshots__/addon-centered.stories.storyshot b/examples/vue-kitchen-sink/src/stories/__snapshots__/addon-centered.stories.storyshot index 4838600b62f..47ac3c0b543 100644 --- a/examples/vue-kitchen-sink/src/stories/__snapshots__/addon-centered.stories.storyshot +++ b/examples/vue-kitchen-sink/src/stories/__snapshots__/addon-centered.stories.storyshot @@ -7,12 +7,20 @@ exports[`Storyshots Addon|Centered rounded 1`] = `
- +
+ +
+
`; diff --git a/examples/vue-kitchen-sink/src/stories/__snapshots__/custom-decorators.stories.storyshot b/examples/vue-kitchen-sink/src/stories/__snapshots__/custom-decorators.stories.storyshot index eb88673228a..d0e4a58cc4f 100644 --- a/examples/vue-kitchen-sink/src/stories/__snapshots__/custom-decorators.stories.storyshot +++ b/examples/vue-kitchen-sink/src/stories/__snapshots__/custom-decorators.stories.storyshot @@ -5,13 +5,17 @@ exports[`Storyshots Custom|Decorator for Vue render 1`] = ` style="border: medium solid blue;" >
- + +
`; @@ -21,14 +25,18 @@ exports[`Storyshots Custom|Decorator for Vue template 1`] = ` style="border: medium solid blue;" >
- + +
`; diff --git a/lib/addons/src/index.js b/lib/addons/src/index.js index 161a58ed006..883633ee9fb 100644 --- a/lib/addons/src/index.js +++ b/lib/addons/src/index.js @@ -22,6 +22,10 @@ export class AddonStore { return this.channel; } + hasChannel() { + return Boolean(this.channel); + } + setChannel(channel) { this.channel = channel; } diff --git a/lib/channels/src/index.test.js b/lib/channels/src/index.test.js index 722a26e0139..7497f7e9cba 100644 --- a/lib/channels/src/index.test.js +++ b/lib/channels/src/index.test.js @@ -195,11 +195,19 @@ describe('Channel', () => { }); describe('_miscellaneous', () => { - it('should not ignore if event came from itself', () => { + it('should ignore if event came from own sender', () => { const received = []; channel.on('type-1', n => received.push(n)); channel._handleEvent({ type: 'type-1', args: [11] }); channel._handleEvent({ type: 'type-1', args: [12], from: channel._sender }); + expect(received).toEqual([11]); + }); + + it('should not ignore peer event', () => { + const received = []; + channel.on('type-1', n => received.push(n)); + channel._handleEvent({ type: 'type-1', args: [11] }); + channel._handleEvent({ type: 'type-1', args: [12] }, true); expect(received).toEqual([11, 12]); }); @@ -208,6 +216,7 @@ describe('Channel', () => { channel.addPeerListener('type-1', n => received.push(n)); channel._handleEvent({ type: 'type-1', args: [11], from: channel._sender }); channel._handleEvent({ type: 'type-1', args: [12], from: '_' }); + channel._handleEvent({ type: 'type-1', args: [13] }, true); expect(received).toEqual([12]); }); }); diff --git a/lib/core/src/client/preview/client_api.js b/lib/core/src/client/preview/client_api.js index 4c0a75998ed..3e8337d3be4 100644 --- a/lib/core/src/client/preview/client_api.js +++ b/lib/core/src/client/preview/client_api.js @@ -20,6 +20,7 @@ const metaSubscription = () => { }; const withSubscriptionTracking = storyFn => { + if (!addons.hasChannel()) return storyFn(); subscriptionsStore.markAllAsUnused(); subscriptionsStore.register(metaSubscription); const result = storyFn(); From 3acb37adda76145f0a5bf7d0c8d9703d176a37da Mon Sep 17 00:00:00 2001 From: Hypnosphi Date: Sat, 12 May 2018 18:21:57 +0300 Subject: [PATCH 021/143] Update CLI snapshots --- lib/cli/test/snapshots/meteor/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cli/test/snapshots/meteor/package.json b/lib/cli/test/snapshots/meteor/package.json index 21d45d896bd..7d64298af7f 100644 --- a/lib/cli/test/snapshots/meteor/package.json +++ b/lib/cli/test/snapshots/meteor/package.json @@ -15,7 +15,7 @@ }, "devDependencies": { "babel-core": "^6.26.3", - "babel-preset-env": "^1.6.1", + "babel-preset-env": "^1.7.0", "babel-preset-react": "^6.24.1", "babel-preset-stage-1": "^6.24.1", "babel-root-slash-import": "^1.1.0", From 2889076bf24872da50bd2563d9a819bc1ddfa846 Mon Sep 17 00:00:00 2001 From: Hypnosphi Date: Sat, 12 May 2018 20:16:21 +0300 Subject: [PATCH 022/143] RN: Sync selected story between manager and device --- addons/knobs/src/registerKnobs.js | 3 +-- app/react-native/src/manager/provider.js | 3 +++ app/react-native/src/preview/index.js | 8 ++++++-- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/addons/knobs/src/registerKnobs.js b/addons/knobs/src/registerKnobs.js index bffd55bb051..ab16295cc5c 100644 --- a/addons/knobs/src/registerKnobs.js +++ b/addons/knobs/src/registerKnobs.js @@ -36,8 +36,7 @@ function resetKnobs() { forceReRender(); - const channel = addons.getChannel(); - setPaneKnobs(channel, knobStore, false); + setPaneKnobs(false); } function disconnectCallbacks() { diff --git a/app/react-native/src/manager/provider.js b/app/react-native/src/manager/provider.js index 510b5635b17..820fb3bc943 100644 --- a/app/react-native/src/manager/provider.js +++ b/app/react-native/src/manager/provider.js @@ -56,6 +56,9 @@ export default class ReactProvider extends Provider { this.selection = { kind, story }; this.channel.emit(Events.SET_CURRENT_STORY, this.selection); }); + this.channel.on(Events.SELECT_STORY, ({ kind, story }) => { + api.selectStory(kind, story); + }); this.channel.on(Events.SET_STORIES, data => { api.setStories(data.stories); }); diff --git a/app/react-native/src/preview/index.js b/app/react-native/src/preview/index.js index eaf857f9372..3947b60cbfc 100644 --- a/app/react-native/src/preview/index.js +++ b/app/react-native/src/preview/index.js @@ -70,7 +70,7 @@ export default class Preview { channel.on(Events.GET_STORIES, () => this._sendSetStories()); channel.on(Events.SET_CURRENT_STORY, d => this._selectStory(d)); channel.on(Events.FORCE_RE_RENDER, () => this._forceRender()); - this._events.on(Events.SET_CURRENT_STORY, d => this._selectStory(d)); + this._events.on(Events.SET_CURRENT_STORY, d => this._selectStory(d, true)); this._sendSetStories(); this._sendGetCurrentStory(); @@ -94,9 +94,13 @@ export default class Preview { channel.emit(Events.GET_CURRENT_STORY); } - _selectStory(selection) { + _selectStory(selection, fromPreview) { const { kind, story } = selection; const storyFn = this._stories.getStoryWithContext(kind, story); + if (fromPreview) { + const channel = addons.getChannel(); + channel.emit(Events.SELECT_STORY, selection); + } this._events.emit(Events.SELECT_STORY, storyFn, selection); } From 56f30e75f23ac8b193beecdb6615c6a487986b60 Mon Sep 17 00:00:00 2001 From: Hypnosphi Date: Sat, 12 May 2018 20:31:07 +0300 Subject: [PATCH 023/143] RN: Sync selected story between manager and device --- addons/actions/src/preview/withActions.js | 4 +++- addons/storyshots/src/index.js | 5 +---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/addons/actions/src/preview/withActions.js b/addons/actions/src/preview/withActions.js index 35b78f48d62..52dd7095ccb 100644 --- a/addons/actions/src/preview/withActions.js +++ b/addons/actions/src/preview/withActions.js @@ -57,7 +57,9 @@ const actionsSubscription = (...args) => { }; export const createDecorator = actionsFn => (...args) => story => { - addons.getChannel().emit(Events.REGISTER_SUBSCRIPTION, actionsSubscription(actionsFn, ...args)); + if (root != null) { + addons.getChannel().emit(Events.REGISTER_SUBSCRIPTION, actionsSubscription(actionsFn, ...args)); + } return story(); }; diff --git a/addons/storyshots/src/index.js b/addons/storyshots/src/index.js index 1abbf130924..6d04b800d26 100644 --- a/addons/storyshots/src/index.js +++ b/addons/storyshots/src/index.js @@ -1,6 +1,6 @@ import fs from 'fs'; import glob from 'glob'; -import global, { document, describe, it } from 'global'; +import global, { describe, it } from 'global'; import addons, { mockChannel } from '@storybook/addons'; import loadFramework from './frameworkLoader'; import getIntegrityOptions from './getIntegrityOptions'; @@ -35,9 +35,6 @@ export default function testStorySnapshots(options = {}) { } addons.setChannel(mockChannel()); - const rootEl = document.createElement('div'); - rootEl.setAttribute('id', 'root'); - document.body.appendChild(rootEl); const { storybook, framework, renderTree, renderShallowTree } = loadFramework(options); const stories = storybook.getStorybook(); From 24fe256e29116d7c2b96e0123c445ff4a396c992 Mon Sep 17 00:00:00 2001 From: Hypnosphi Date: Sat, 12 May 2018 20:53:41 +0300 Subject: [PATCH 024/143] Backgrounds: add overriding example --- addons/backgrounds/src/BackgroundPanel.js | 2 +- .../__snapshots__/addon-backgrounds.stories.storyshot | 6 ++++++ .../stories/addon-backgrounds.stories.js | 8 +++++++- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/addons/backgrounds/src/BackgroundPanel.js b/addons/backgrounds/src/BackgroundPanel.js index 14dbd9fa153..96bbfbbf4a4 100644 --- a/addons/backgrounds/src/BackgroundPanel.js +++ b/addons/backgrounds/src/BackgroundPanel.js @@ -93,7 +93,7 @@ export default class BackgroundPanel extends Component { this.setState({ backgrounds }); const currentBackground = api.getQueryParam('background'); - if (currentBackground) { + if (currentBackground && backgrounds.some(bg => bg.value === currentBackground)) { this.updateIframe(currentBackground); } else if (backgrounds.filter(x => x.default).length) { const defaultBgs = backgrounds.filter(x => x.default); diff --git a/examples/official-storybook/stories/__snapshots__/addon-backgrounds.stories.storyshot b/examples/official-storybook/stories/__snapshots__/addon-backgrounds.stories.storyshot index 59ddd8f533d..856f3abbf94 100644 --- a/examples/official-storybook/stories/__snapshots__/addon-backgrounds.stories.storyshot +++ b/examples/official-storybook/stories/__snapshots__/addon-backgrounds.stories.storyshot @@ -1,5 +1,11 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP +exports[`Storyshots Addons|Backgrounds overriden 1`] = ` + +`; + exports[`Storyshots Addons|Backgrounds story 1 1`] = ` - - -
-
- -`; - -exports[`Storyshots Custom|Style With Knobs 1`] = ` `; + +exports[`Storyshots Custom|Style With Knobs 1`] = ` + + + + + + + + + + + +`; From 16fd43930aba3073bf1b01f5aa681d6ad0fe5da2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Lula?= Date: Wed, 16 May 2018 10:00:22 +0200 Subject: [PATCH 135/143] Add missing semicolon --- addons/knobs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/knobs/README.md b/addons/knobs/README.md index 5311e52dc95..2a9e679d144 100644 --- a/addons/knobs/README.md +++ b/addons/knobs/README.md @@ -31,7 +31,7 @@ npm install @storybook/addon-knobs --save-dev Then, configure it as an addon by adding it to your `addons.js` file (located in the Storybook config directory). ```js -import '@storybook/addon-knobs/register' +import '@storybook/addon-knobs/register'; ``` Now, write your stories with knobs. From d05a517871a07e79e86ec0cfec1f4cc1879451ec Mon Sep 17 00:00:00 2001 From: Michael Shilman Date: Thu, 17 May 2018 14:55:33 -0700 Subject: [PATCH 136/143] 3.4.5 changelog --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 85d355edabd..07fff17931b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +# 3.4.5 + +2018-May-17 + +#### Features + +- Addon-info: improve prop options [#3428](https://github.com/storybooks/storybook/pull/3428) + +#### Bug Fixes + +- Addon-storysource: Remove nested braces in code block [#3568](https://github.com/storybooks/storybook/pull/3568) +- Addon-info: Fix double quotes in prop table, add additional examples [#3401](https://github.com/storybooks/storybook/pull/3401) +- Ignore any unstructured output from the package managers [#3563](https://github.com/storybooks/storybook/pull/3563) +- Use the --use-npm flag also for version checking [#3535](https://github.com/storybooks/storybook/pull/3535) + # 4.0.0-alpha.6 2018-May-12 From bfccfe12b4746ae1fa16effcadca071518fb1bd3 Mon Sep 17 00:00:00 2001 From: Michael Shilman Date: Thu, 17 May 2018 15:44:00 -0700 Subject: [PATCH 137/143] 4.0.0-alpha.7 changelog --- CHANGELOG.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 07fff17931b..37fba68f532 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# 4.0.0-alpha.7 + +2018-May-17 + +#### Breaking Changes + +- Support webpack4 modules format [#3576](https://github.com/storybooks/storybook/pull/3576) + +#### Features + +- Addon-centered for Angular [#3573](https://github.com/storybooks/storybook/pull/3573) + +#### Maintenance + +- Generic addon decorators [#3555](https://github.com/storybooks/storybook/pull/3555) +- Refactor transitional decorator from addon-notes [#3559](https://github.com/storybooks/storybook/pull/3559) + # 3.4.5 2018-May-17 From 1660696fc233dfad3a9f11ee109096868e5b8c65 Mon Sep 17 00:00:00 2001 From: Hypnosphi Date: Fri, 18 May 2018 02:00:54 +0300 Subject: [PATCH 138/143] Fix json --- addons/events/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/events/package.json b/addons/events/package.json index 0899f448ac2..fe1cfa377a9 100644 --- a/addons/events/package.json +++ b/addons/events/package.json @@ -25,7 +25,7 @@ "format-json": "^1.0.3", "prop-types": "^15.6.1", "react-lifecycles-compat": "^3.0.4", - "react-textarea-autosize": "^6.1.0" + "react-textarea-autosize": "^6.1.0", "util-deprecate": "^1.0.2" }, "peerDependencies": { From 008414bc47c9c35d9bb29368d8fdb155b93efb8e Mon Sep 17 00:00:00 2001 From: Michael Shilman Date: Thu, 17 May 2018 16:02:57 -0700 Subject: [PATCH 139/143] v4.0.0-alpha.7 --- addons/a11y/package.json | 10 ++--- addons/actions/package.json | 8 ++-- addons/backgrounds/package.json | 6 +-- addons/centered/package.json | 2 +- addons/events/package.json | 6 +-- addons/graphql/package.json | 2 +- addons/info/package.json | 6 +-- addons/jest/package.json | 6 +-- addons/knobs/package.json | 8 ++-- addons/links/package.json | 8 ++-- addons/notes/package.json | 4 +- addons/options/package.json | 4 +- addons/storyshots/package.json | 16 ++++---- addons/storysource/package.json | 6 +-- addons/viewport/package.json | 8 ++-- app/angular/package.json | 6 +-- app/html/package.json | 4 +- app/marko/package.json | 14 +++---- app/mithril/package.json | 4 +- app/polymer/package.json | 4 +- app/react-native/package.json | 16 ++++---- app/react/package.json | 4 +- app/vue/package.json | 4 +- examples/angular-cli/package.json | 24 +++++------ examples/cra-kitchen-sink/package.json | 32 +++++++-------- examples/html-kitchen-sink/package.json | 36 ++++++++-------- examples/marko-cli/package.json | 14 +++---- examples/mithril-kitchen-sink/package.json | 26 ++++++------ examples/official-storybook/package.json | 42 +++++++++---------- examples/polymer-cli/package.json | 18 ++++---- examples/vue-kitchen-sink/package.json | 26 ++++++------ lerna.json | 2 +- lib/addons/package.json | 4 +- lib/channel-postmessage/package.json | 4 +- lib/channel-websocket/package.json | 4 +- lib/channels/package.json | 2 +- lib/cli/package.json | 48 +++++++++++----------- lib/client-logger/package.json | 2 +- lib/codemod/package.json | 2 +- lib/components/package.json | 8 ++-- lib/core-events/package.json | 2 +- lib/core/package.json | 14 +++---- lib/node-logger/package.json | 2 +- lib/ui/package.json | 10 ++--- 44 files changed, 239 insertions(+), 239 deletions(-) diff --git a/addons/a11y/package.json b/addons/a11y/package.json index 7bde7cc68da..ef0ebe432f9 100644 --- a/addons/a11y/package.json +++ b/addons/a11y/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addon-a11y", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "a11y addon for storybook", "keywords": [ "a11y", @@ -25,10 +25,10 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/addons": "4.0.0-alpha.6", - "@storybook/client-logger": "4.0.0-alpha.6", - "@storybook/components": "4.0.0-alpha.6", - "@storybook/core-events": "4.0.0-alpha.6", + "@storybook/addons": "4.0.0-alpha.7", + "@storybook/client-logger": "4.0.0-alpha.7", + "@storybook/components": "4.0.0-alpha.7", + "@storybook/core-events": "4.0.0-alpha.7", "axe-core": "^3.0.2", "babel-runtime": "^6.26.0", "glamor": "^2.20.40", diff --git a/addons/actions/package.json b/addons/actions/package.json index 665c74c1882..ab341c6f439 100644 --- a/addons/actions/package.json +++ b/addons/actions/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addon-actions", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Action Logger addon for storybook", "keywords": [ "storybook" @@ -20,9 +20,9 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/addons": "4.0.0-alpha.6", - "@storybook/components": "4.0.0-alpha.6", - "@storybook/core-events": "4.0.0-alpha.6", + "@storybook/addons": "4.0.0-alpha.7", + "@storybook/components": "4.0.0-alpha.7", + "@storybook/core-events": "4.0.0-alpha.7", "babel-runtime": "^6.26.0", "deep-equal": "^1.0.1", "glamor": "^2.20.40", diff --git a/addons/backgrounds/package.json b/addons/backgrounds/package.json index 58a0f3fbb83..34320068a70 100644 --- a/addons/backgrounds/package.json +++ b/addons/backgrounds/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addon-backgrounds", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "A storybook addon to show different backgrounds for your preview", "keywords": [ "addon", @@ -24,8 +24,8 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/addons": "4.0.0-alpha.6", - "@storybook/core-events": "4.0.0-alpha.6", + "@storybook/addons": "4.0.0-alpha.7", + "@storybook/core-events": "4.0.0-alpha.7", "babel-runtime": "^6.26.0", "global": "^4.3.2", "prop-types": "^15.6.1", diff --git a/addons/centered/package.json b/addons/centered/package.json index cfbc48710b5..687759b96f4 100644 --- a/addons/centered/package.json +++ b/addons/centered/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addon-centered", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Storybook decorator to center components", "license": "MIT", "author": "Muhammed Thanish ", diff --git a/addons/events/package.json b/addons/events/package.json index 58cada97f72..023b967bd40 100644 --- a/addons/events/package.json +++ b/addons/events/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addon-events", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Add events to your Storybook stories.", "keywords": [ "addon", @@ -19,8 +19,8 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/addons": "4.0.0-alpha.6", - "@storybook/core-events": "4.0.0-alpha.6", + "@storybook/addons": "4.0.0-alpha.7", + "@storybook/core-events": "4.0.0-alpha.7", "babel-runtime": "^6.26.0", "format-json": "^1.0.3", "prop-types": "^15.6.1", diff --git a/addons/graphql/package.json b/addons/graphql/package.json index cc5c220320a..892c5bc0ed8 100644 --- a/addons/graphql/package.json +++ b/addons/graphql/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addon-graphql", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Storybook addon to display the GraphiQL IDE", "keywords": [ "storybook" diff --git a/addons/info/package.json b/addons/info/package.json index 5682546b749..35c713dd465 100644 --- a/addons/info/package.json +++ b/addons/info/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addon-info", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "A Storybook addon to show additional information for your stories.", "license": "MIT", "main": "dist/index.js", @@ -13,8 +13,8 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/client-logger": "4.0.0-alpha.6", - "@storybook/components": "4.0.0-alpha.6", + "@storybook/client-logger": "4.0.0-alpha.7", + "@storybook/components": "4.0.0-alpha.7", "babel-runtime": "^6.26.0", "core-js": "2.5.6", "glamor": "^2.20.40", diff --git a/addons/jest/package.json b/addons/jest/package.json index 7efd6a5a513..f0b97e8d922 100644 --- a/addons/jest/package.json +++ b/addons/jest/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addon-jest", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "React storybook addon that show component jest report", "keywords": [ "addon", @@ -25,8 +25,8 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/addons": "4.0.0-alpha.6", - "@storybook/components": "4.0.0-alpha.6", + "@storybook/addons": "4.0.0-alpha.7", + "@storybook/components": "4.0.0-alpha.7", "babel-runtime": "^6.26.0", "glamor": "^2.20.40", "glamorous": "^4.12.5", diff --git a/addons/knobs/package.json b/addons/knobs/package.json index bb7807870d9..36ad710368c 100644 --- a/addons/knobs/package.json +++ b/addons/knobs/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addon-knobs", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Storybook Addon Prop Editor Component", "license": "MIT", "main": "dist/index.js", @@ -13,9 +13,9 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/addons": "4.0.0-alpha.6", - "@storybook/components": "4.0.0-alpha.6", - "@storybook/core-events": "4.0.0-alpha.6", + "@storybook/addons": "4.0.0-alpha.7", + "@storybook/components": "4.0.0-alpha.7", + "@storybook/core-events": "4.0.0-alpha.7", "babel-runtime": "^6.26.0", "deep-equal": "^1.0.1", "escape-html": "^1.0.3", diff --git a/addons/links/package.json b/addons/links/package.json index 7836a8d7c4c..840b24f973f 100644 --- a/addons/links/package.json +++ b/addons/links/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addon-links", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Story Links addon for storybook", "keywords": [ "storybook" @@ -20,9 +20,9 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/addons": "4.0.0-alpha.6", - "@storybook/components": "4.0.0-alpha.6", - "@storybook/core-events": "4.0.0-alpha.6", + "@storybook/addons": "4.0.0-alpha.7", + "@storybook/components": "4.0.0-alpha.7", + "@storybook/core-events": "4.0.0-alpha.7", "babel-runtime": "^6.26.0", "global": "^4.3.2", "prop-types": "^15.6.1" diff --git a/addons/notes/package.json b/addons/notes/package.json index edd3dd02ee8..595ecb3817e 100644 --- a/addons/notes/package.json +++ b/addons/notes/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addon-notes", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Write notes for your Storybook stories.", "keywords": [ "addon", @@ -18,7 +18,7 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/addons": "4.0.0-alpha.6", + "@storybook/addons": "4.0.0-alpha.7", "babel-runtime": "^6.26.0", "marked": "^0.3.19", "prop-types": "^15.6.1", diff --git a/addons/options/package.json b/addons/options/package.json index 8bfefb52f8f..169c0d9332c 100644 --- a/addons/options/package.json +++ b/addons/options/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addon-options", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Options addon for storybook", "keywords": [ "storybook" @@ -19,7 +19,7 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/addons": "4.0.0-alpha.6", + "@storybook/addons": "4.0.0-alpha.7", "babel-runtime": "^6.26.0" }, "peerDependencies": { diff --git a/addons/storyshots/package.json b/addons/storyshots/package.json index 02f5da3768d..a4c53888742 100644 --- a/addons/storyshots/package.json +++ b/addons/storyshots/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addon-storyshots", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "StoryShots is a Jest Snapshot Testing Addon for Storybook.", "license": "MIT", "main": "dist/index.js", @@ -16,9 +16,9 @@ "storybook": "start-storybook -p 6006" }, "dependencies": { - "@storybook/addons": "4.0.0-alpha.6", - "@storybook/core": "4.0.0-alpha.6", - "@storybook/node-logger": "4.0.0-alpha.6", + "@storybook/addons": "4.0.0-alpha.7", + "@storybook/core": "4.0.0-alpha.7", + "@storybook/node-logger": "4.0.0-alpha.7", "babel-runtime": "^6.26.0", "glob": "^7.1.2", "global": "^4.3.2", @@ -28,10 +28,10 @@ "read-pkg-up": "^3.0.0" }, "devDependencies": { - "@storybook/addon-actions": "4.0.0-alpha.6", - "@storybook/addon-links": "4.0.0-alpha.6", - "@storybook/addons": "4.0.0-alpha.6", - "@storybook/react": "4.0.0-alpha.6", + "@storybook/addon-actions": "4.0.0-alpha.7", + "@storybook/addon-links": "4.0.0-alpha.7", + "@storybook/addons": "4.0.0-alpha.7", + "@storybook/react": "4.0.0-alpha.7", "enzyme-to-json": "^3.3.3", "react": "^16.3.2" }, diff --git a/addons/storysource/package.json b/addons/storysource/package.json index 525dcf4f10e..4cb1557cee5 100644 --- a/addons/storysource/package.json +++ b/addons/storysource/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addon-storysource", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Stories addon for storybook", "keywords": [ "storybook" @@ -20,8 +20,8 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/addons": "4.0.0-alpha.6", - "@storybook/components": "4.0.0-alpha.6", + "@storybook/addons": "4.0.0-alpha.7", + "@storybook/components": "4.0.0-alpha.7", "babel-runtime": "^6.26.0", "estraverse": "^4.2.0", "loader-utils": "^1.1.0", diff --git a/addons/viewport/package.json b/addons/viewport/package.json index a163b2262ae..c865153436c 100644 --- a/addons/viewport/package.json +++ b/addons/viewport/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addon-viewport", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Storybook addon to change the viewport size to mobile", "keywords": [ "storybook" @@ -11,9 +11,9 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/addons": "4.0.0-alpha.6", - "@storybook/components": "4.0.0-alpha.6", - "@storybook/core-events": "4.0.0-alpha.6", + "@storybook/addons": "4.0.0-alpha.7", + "@storybook/components": "4.0.0-alpha.7", + "@storybook/core-events": "4.0.0-alpha.7", "babel-runtime": "^6.26.0", "global": "^4.3.2", "lodash.debounce": "^4.0.8", diff --git a/app/angular/package.json b/app/angular/package.json index 3537082ab3d..500fe445e66 100644 --- a/app/angular/package.json +++ b/app/angular/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/angular", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Storybook for Angular: Develop Angular Components in isolation with Hot Reloading.", "homepage": "https://github.com/storybooks/storybook/tree/master/apps/angular", "bugs": { @@ -22,8 +22,8 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/core": "4.0.0-alpha.6", - "@storybook/node-logger": "4.0.0-alpha.6", + "@storybook/core": "4.0.0-alpha.7", + "@storybook/node-logger": "4.0.0-alpha.7", "@storybook/react-dev-utils": "^5.0.0", "airbnb-js-shims": "^1.4.1", "angular2-template-loader": "^0.6.2", diff --git a/app/html/package.json b/app/html/package.json index 54dd6302e31..886643c0893 100644 --- a/app/html/package.json +++ b/app/html/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/html", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Storybook for HTML: View HTML snippets in isolation with Hot Reloading.", "homepage": "https://github.com/storybooks/storybook/tree/master/apps/html", "bugs": { @@ -21,7 +21,7 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/core": "4.0.0-alpha.6", + "@storybook/core": "4.0.0-alpha.7", "@storybook/react-dev-utils": "^5.0.0", "airbnb-js-shims": "^1.4.1", "babel-loader": "^7.1.4", diff --git a/app/marko/package.json b/app/marko/package.json index 8485b369ed4..b50fd2237b3 100644 --- a/app/marko/package.json +++ b/app/marko/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/marko", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Storybook for Marko: Develop Marko Component in isolation with Hot Reloading.", "homepage": "https://github.com/storybooks/storybook/tree/master/app/marko", "bugs": { @@ -22,12 +22,12 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/addons": "4.0.0-alpha.6", - "@storybook/channel-postmessage": "4.0.0-alpha.6", - "@storybook/client-logger": "4.0.0-alpha.6", - "@storybook/core": "4.0.0-alpha.6", - "@storybook/node-logger": "4.0.0-alpha.6", - "@storybook/ui": "4.0.0-alpha.6", + "@storybook/addons": "4.0.0-alpha.7", + "@storybook/channel-postmessage": "4.0.0-alpha.7", + "@storybook/client-logger": "4.0.0-alpha.7", + "@storybook/core": "4.0.0-alpha.7", + "@storybook/node-logger": "4.0.0-alpha.7", + "@storybook/ui": "4.0.0-alpha.7", "airbnb-js-shims": "^1.4.1", "babel-loader": "^7.1.4", "babel-plugin-macros": "^2.2.0", diff --git a/app/mithril/package.json b/app/mithril/package.json index 05b06831a39..ce69b370bca 100644 --- a/app/mithril/package.json +++ b/app/mithril/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/mithril", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Storybook for Mithril: Develop Mithril Component in isolation.", "homepage": "https://github.com/storybooks/storybook/tree/master/app/mithril", "bugs": { @@ -22,7 +22,7 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/core": "4.0.0-alpha.6", + "@storybook/core": "4.0.0-alpha.7", "@storybook/react-dev-utils": "^5.0.0", "airbnb-js-shims": "^1.4.1", "babel-loader": "^7.1.4", diff --git a/app/polymer/package.json b/app/polymer/package.json index e82b110bf2c..55f6ee408d9 100644 --- a/app/polymer/package.json +++ b/app/polymer/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/polymer", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Storybook for Polymer: Develop Polymer components in isolation with Hot Reloading.", "homepage": "https://github.com/storybooks/storybook/tree/master/apps/polymer", "bugs": { @@ -21,7 +21,7 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/core": "4.0.0-alpha.6", + "@storybook/core": "4.0.0-alpha.7", "@storybook/react-dev-utils": "^5.0.0", "@webcomponents/webcomponentsjs": "^1.2.0", "airbnb-js-shims": "^1.4.1", diff --git a/app/react-native/package.json b/app/react-native/package.json index 28c390952e3..a3b7471e57b 100644 --- a/app/react-native/package.json +++ b/app/react-native/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/react-native", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "A better way to develop React Native Components for your app", "keywords": [ "react", @@ -25,14 +25,14 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/addon-actions": "4.0.0-alpha.6", - "@storybook/addon-links": "4.0.0-alpha.6", - "@storybook/addons": "4.0.0-alpha.6", - "@storybook/channel-websocket": "4.0.0-alpha.6", - "@storybook/core": "4.0.0-alpha.6", - "@storybook/core-events": "4.0.0-alpha.6", + "@storybook/addon-actions": "4.0.0-alpha.7", + "@storybook/addon-links": "4.0.0-alpha.7", + "@storybook/addons": "4.0.0-alpha.7", + "@storybook/channel-websocket": "4.0.0-alpha.7", + "@storybook/core": "4.0.0-alpha.7", + "@storybook/core-events": "4.0.0-alpha.7", "@storybook/react-dev-utils": "^5.0.0", - "@storybook/ui": "4.0.0-alpha.6", + "@storybook/ui": "4.0.0-alpha.7", "babel-loader": "^7.1.4", "babel-plugin-macros": "^2.2.0", "babel-plugin-syntax-async-functions": "^6.13.0", diff --git a/app/react/package.json b/app/react/package.json index 6a070f391e6..20a9e738bdb 100644 --- a/app/react/package.json +++ b/app/react/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/react", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Storybook for React: Develop React Component in isolation with Hot Reloading.", "homepage": "https://github.com/storybooks/storybook/tree/master/app/react", "bugs": { @@ -22,7 +22,7 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/core": "4.0.0-alpha.6", + "@storybook/core": "4.0.0-alpha.7", "@storybook/react-dev-utils": "^5.0.0", "airbnb-js-shims": "^1.4.1", "babel-loader": "^7.1.4", diff --git a/app/vue/package.json b/app/vue/package.json index 97dab6df98f..35dce7c4855 100644 --- a/app/vue/package.json +++ b/app/vue/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/vue", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Storybook for Vue: Develop Vue Component in isolation with Hot Reloading.", "homepage": "https://github.com/storybooks/storybook/tree/master/apps/vue", "bugs": { @@ -22,7 +22,7 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/core": "4.0.0-alpha.6", + "@storybook/core": "4.0.0-alpha.7", "@storybook/react-dev-utils": "^5.0.0", "airbnb-js-shims": "^1.4.1", "babel-loader": "^7.1.4", diff --git a/examples/angular-cli/package.json b/examples/angular-cli/package.json index 372dad206df..748013162af 100644 --- a/examples/angular-cli/package.json +++ b/examples/angular-cli/package.json @@ -1,6 +1,6 @@ { "name": "angular-cli", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "private": true, "license": "MIT", "scripts": { @@ -31,17 +31,17 @@ "devDependencies": { "@angular/cli": "1.7.4", "@angular/compiler-cli": "^5.2.10", - "@storybook/addon-actions": "4.0.0-alpha.6", - "@storybook/addon-jest": "4.0.0-alpha.6", - "@storybook/addon-knobs": "4.0.0-alpha.6", - "@storybook/addon-links": "4.0.0-alpha.6", - "@storybook/addon-notes": "4.0.0-alpha.6", - "@storybook/addon-options": "4.0.0-alpha.6", - "@storybook/addon-centered": "4.0.0-alpha.6", - "@storybook/addon-storyshots": "4.0.0-alpha.6", - "@storybook/addon-storysource": "4.0.0-alpha.6", - "@storybook/addons": "4.0.0-alpha.6", - "@storybook/angular": "4.0.0-alpha.6", + "@storybook/addon-actions": "4.0.0-alpha.7", + "@storybook/addon-centered": "4.0.0-alpha.7", + "@storybook/addon-jest": "4.0.0-alpha.7", + "@storybook/addon-knobs": "4.0.0-alpha.7", + "@storybook/addon-links": "4.0.0-alpha.7", + "@storybook/addon-notes": "4.0.0-alpha.7", + "@storybook/addon-options": "4.0.0-alpha.7", + "@storybook/addon-storyshots": "4.0.0-alpha.7", + "@storybook/addon-storysource": "4.0.0-alpha.7", + "@storybook/addons": "4.0.0-alpha.7", + "@storybook/angular": "4.0.0-alpha.7", "@types/jasmine": "~2.8.7", "@types/jasminewd2": "^2.0.3", "@types/jest": "^22.2.3", diff --git a/examples/cra-kitchen-sink/package.json b/examples/cra-kitchen-sink/package.json index 2ea4f947410..0b00e35e3c8 100644 --- a/examples/cra-kitchen-sink/package.json +++ b/examples/cra-kitchen-sink/package.json @@ -1,6 +1,6 @@ { "name": "cra-kitchen-sink", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "private": true, "scripts": { "build": "react-scripts build", @@ -18,21 +18,21 @@ "react-lifecycles-compat": "^3.0.2" }, "devDependencies": { - "@storybook/addon-a11y": "4.0.0-alpha.6", - "@storybook/addon-actions": "4.0.0-alpha.6", - "@storybook/addon-backgrounds": "4.0.0-alpha.6", - "@storybook/addon-centered": "4.0.0-alpha.6", - "@storybook/addon-events": "4.0.0-alpha.6", - "@storybook/addon-info": "4.0.0-alpha.6", - "@storybook/addon-jest": "4.0.0-alpha.6", - "@storybook/addon-knobs": "4.0.0-alpha.6", - "@storybook/addon-links": "4.0.0-alpha.6", - "@storybook/addon-notes": "4.0.0-alpha.6", - "@storybook/addon-options": "4.0.0-alpha.6", - "@storybook/addon-storyshots": "4.0.0-alpha.6", - "@storybook/addons": "4.0.0-alpha.6", - "@storybook/client-logger": "4.0.0-alpha.6", - "@storybook/react": "4.0.0-alpha.6", + "@storybook/addon-a11y": "4.0.0-alpha.7", + "@storybook/addon-actions": "4.0.0-alpha.7", + "@storybook/addon-backgrounds": "4.0.0-alpha.7", + "@storybook/addon-centered": "4.0.0-alpha.7", + "@storybook/addon-events": "4.0.0-alpha.7", + "@storybook/addon-info": "4.0.0-alpha.7", + "@storybook/addon-jest": "4.0.0-alpha.7", + "@storybook/addon-knobs": "4.0.0-alpha.7", + "@storybook/addon-links": "4.0.0-alpha.7", + "@storybook/addon-notes": "4.0.0-alpha.7", + "@storybook/addon-options": "4.0.0-alpha.7", + "@storybook/addon-storyshots": "4.0.0-alpha.7", + "@storybook/addons": "4.0.0-alpha.7", + "@storybook/client-logger": "4.0.0-alpha.7", + "@storybook/react": "4.0.0-alpha.7", "babel-runtime": "^6.26.0", "enzyme": "^3.3.0", "enzyme-adapter-react-16": "^1.1.0", diff --git a/examples/html-kitchen-sink/package.json b/examples/html-kitchen-sink/package.json index 8c746b9c723..3567e41de77 100644 --- a/examples/html-kitchen-sink/package.json +++ b/examples/html-kitchen-sink/package.json @@ -1,6 +1,6 @@ { "name": "html-kitchen-sink", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "", "main": "index.js", "private": true, @@ -13,23 +13,23 @@ "author": "", "license": "ISC", "devDependencies": { - "@storybook/addon-a11y": "4.0.0-alpha.6", - "@storybook/addon-actions": "4.0.0-alpha.6", - "@storybook/addon-backgrounds": "4.0.0-alpha.6", - "@storybook/addon-centered": "4.0.0-alpha.6", - "@storybook/addon-events": "4.0.0-alpha.6", - "@storybook/addon-jest": "4.0.0-alpha.6", - "@storybook/addon-knobs": "4.0.0-alpha.6", - "@storybook/addon-links": "4.0.0-alpha.6", - "@storybook/addon-notes": "4.0.0-alpha.6", - "@storybook/addon-options": "4.0.0-alpha.6", - "@storybook/addon-storyshots": "4.0.0-alpha.6", - "@storybook/addon-storysource": "4.0.0-alpha.6", - "@storybook/addon-viewport": "4.0.0-alpha.6", - "@storybook/addons": "4.0.0-alpha.6", - "@storybook/core": "4.0.0-alpha.6", - "@storybook/core-events": "4.0.0-alpha.6", - "@storybook/html": "4.0.0-alpha.6", + "@storybook/addon-a11y": "4.0.0-alpha.7", + "@storybook/addon-actions": "4.0.0-alpha.7", + "@storybook/addon-backgrounds": "4.0.0-alpha.7", + "@storybook/addon-centered": "4.0.0-alpha.7", + "@storybook/addon-events": "4.0.0-alpha.7", + "@storybook/addon-jest": "4.0.0-alpha.7", + "@storybook/addon-knobs": "4.0.0-alpha.7", + "@storybook/addon-links": "4.0.0-alpha.7", + "@storybook/addon-notes": "4.0.0-alpha.7", + "@storybook/addon-options": "4.0.0-alpha.7", + "@storybook/addon-storyshots": "4.0.0-alpha.7", + "@storybook/addon-storysource": "4.0.0-alpha.7", + "@storybook/addon-viewport": "4.0.0-alpha.7", + "@storybook/addons": "4.0.0-alpha.7", + "@storybook/core": "4.0.0-alpha.7", + "@storybook/core-events": "4.0.0-alpha.7", + "@storybook/html": "4.0.0-alpha.7", "babel-core": "^6.26.0", "babel-runtime": "^6.26.0", "eventemitter3": "^3.1.0", diff --git a/examples/marko-cli/package.json b/examples/marko-cli/package.json index 0ff7a8e6106..535d86f0662 100644 --- a/examples/marko-cli/package.json +++ b/examples/marko-cli/package.json @@ -1,6 +1,6 @@ { "name": "marko-cli", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Demo of how to build an app using marko-starter", "repository": { "type": "git", @@ -8,12 +8,12 @@ }, "license": "MIT", "devDependencies": { - "@storybook/addon-actions": "4.0.0-alpha.6", - "@storybook/addon-knobs": "4.0.0-alpha.6", - "@storybook/addon-options": "4.0.0-alpha.6", - "@storybook/addon-storysource": "4.0.0-alpha.6", - "@storybook/addons": "4.0.0-alpha.6", - "@storybook/marko": "4.0.0-alpha.6", + "@storybook/addon-actions": "4.0.0-alpha.7", + "@storybook/addon-knobs": "4.0.0-alpha.7", + "@storybook/addon-options": "4.0.0-alpha.7", + "@storybook/addon-storysource": "4.0.0-alpha.7", + "@storybook/addons": "4.0.0-alpha.7", + "@storybook/marko": "4.0.0-alpha.7", "babel-core": "^6.26.0", "eslint": "^4.2.0", "eslint-config-prettier": "^2.3.0", diff --git a/examples/mithril-kitchen-sink/package.json b/examples/mithril-kitchen-sink/package.json index 48a8b6354dd..1421a362a09 100644 --- a/examples/mithril-kitchen-sink/package.json +++ b/examples/mithril-kitchen-sink/package.json @@ -1,6 +1,6 @@ { "name": "mithril-example", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "private": true, "scripts": { "build-storybook": "build-storybook", @@ -10,18 +10,18 @@ "mithril": "^1.1.6" }, "devDependencies": { - "@storybook/addon-actions": "4.0.0-alpha.6", - "@storybook/addon-backgrounds": "4.0.0-alpha.6", - "@storybook/addon-centered": "4.0.0-alpha.6", - "@storybook/addon-knobs": "4.0.0-alpha.6", - "@storybook/addon-links": "4.0.0-alpha.6", - "@storybook/addon-notes": "4.0.0-alpha.6", - "@storybook/addon-options": "4.0.0-alpha.6", - "@storybook/addon-storyshots": "4.0.0-alpha.6", - "@storybook/addon-storysource": "4.0.0-alpha.6", - "@storybook/addon-viewport": "4.0.0-alpha.6", - "@storybook/addons": "4.0.0-alpha.6", - "@storybook/mithril": "4.0.0-alpha.6", + "@storybook/addon-actions": "4.0.0-alpha.7", + "@storybook/addon-backgrounds": "4.0.0-alpha.7", + "@storybook/addon-centered": "4.0.0-alpha.7", + "@storybook/addon-knobs": "4.0.0-alpha.7", + "@storybook/addon-links": "4.0.0-alpha.7", + "@storybook/addon-notes": "4.0.0-alpha.7", + "@storybook/addon-options": "4.0.0-alpha.7", + "@storybook/addon-storyshots": "4.0.0-alpha.7", + "@storybook/addon-storysource": "4.0.0-alpha.7", + "@storybook/addon-viewport": "4.0.0-alpha.7", + "@storybook/addons": "4.0.0-alpha.7", + "@storybook/mithril": "4.0.0-alpha.7", "babel-core": "^6.26.3", "babel-plugin-transform-react-jsx": "^6.24.1", "webpack": "^4.8.0" diff --git a/examples/official-storybook/package.json b/examples/official-storybook/package.json index 28c13e41618..b7b98d08550 100644 --- a/examples/official-storybook/package.json +++ b/examples/official-storybook/package.json @@ -1,6 +1,6 @@ { "name": "official-storybook", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "private": true, "scripts": { "build-storybook": "build-storybook -c ./ -s built-storybooks", @@ -12,26 +12,26 @@ "storybook": "start-storybook -p 9011 -c ./ -s built-storybooks" }, "devDependencies": { - "@storybook/addon-a11y": "4.0.0-alpha.6", - "@storybook/addon-actions": "4.0.0-alpha.6", - "@storybook/addon-backgrounds": "4.0.0-alpha.6", - "@storybook/addon-centered": "4.0.0-alpha.6", - "@storybook/addon-events": "4.0.0-alpha.6", - "@storybook/addon-graphql": "4.0.0-alpha.6", - "@storybook/addon-info": "4.0.0-alpha.6", - "@storybook/addon-jest": "4.0.0-alpha.6", - "@storybook/addon-knobs": "4.0.0-alpha.6", - "@storybook/addon-links": "4.0.0-alpha.6", - "@storybook/addon-notes": "4.0.0-alpha.6", - "@storybook/addon-options": "4.0.0-alpha.6", - "@storybook/addon-storyshots": "4.0.0-alpha.6", - "@storybook/addon-storysource": "4.0.0-alpha.6", - "@storybook/addon-viewport": "4.0.0-alpha.6", - "@storybook/addons": "4.0.0-alpha.6", - "@storybook/components": "4.0.0-alpha.6", - "@storybook/core-events": "4.0.0-alpha.6", - "@storybook/node-logger": "4.0.0-alpha.6", - "@storybook/react": "4.0.0-alpha.6", + "@storybook/addon-a11y": "4.0.0-alpha.7", + "@storybook/addon-actions": "4.0.0-alpha.7", + "@storybook/addon-backgrounds": "4.0.0-alpha.7", + "@storybook/addon-centered": "4.0.0-alpha.7", + "@storybook/addon-events": "4.0.0-alpha.7", + "@storybook/addon-graphql": "4.0.0-alpha.7", + "@storybook/addon-info": "4.0.0-alpha.7", + "@storybook/addon-jest": "4.0.0-alpha.7", + "@storybook/addon-knobs": "4.0.0-alpha.7", + "@storybook/addon-links": "4.0.0-alpha.7", + "@storybook/addon-notes": "4.0.0-alpha.7", + "@storybook/addon-options": "4.0.0-alpha.7", + "@storybook/addon-storyshots": "4.0.0-alpha.7", + "@storybook/addon-storysource": "4.0.0-alpha.7", + "@storybook/addon-viewport": "4.0.0-alpha.7", + "@storybook/addons": "4.0.0-alpha.7", + "@storybook/components": "4.0.0-alpha.7", + "@storybook/core-events": "4.0.0-alpha.7", + "@storybook/node-logger": "4.0.0-alpha.7", + "@storybook/react": "4.0.0-alpha.7", "babel-runtime": "^6.26.0", "cors": "^2.8.4", "enzyme-to-json": "^3.3.3", diff --git a/examples/polymer-cli/package.json b/examples/polymer-cli/package.json index f568ef8b764..e921fb26a16 100644 --- a/examples/polymer-cli/package.json +++ b/examples/polymer-cli/package.json @@ -1,6 +1,6 @@ { "name": "polymer-cli", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "private": true, "scripts": { "build-storybook": "build-storybook", @@ -9,14 +9,14 @@ }, "dependencies": { "@polymer/polymer": "^2.6.0", - "@storybook/addon-actions": "4.0.0-alpha.6", - "@storybook/addon-knobs": "4.0.0-alpha.6", - "@storybook/addon-links": "4.0.0-alpha.6", - "@storybook/addon-notes": "4.0.0-alpha.6", - "@storybook/addon-options": "4.0.0-alpha.6", - "@storybook/addon-storysource": "4.0.0-alpha.6", - "@storybook/addon-viewport": "4.0.0-alpha.6", - "@storybook/polymer": "4.0.0-alpha.6", + "@storybook/addon-actions": "4.0.0-alpha.7", + "@storybook/addon-knobs": "4.0.0-alpha.7", + "@storybook/addon-links": "4.0.0-alpha.7", + "@storybook/addon-notes": "4.0.0-alpha.7", + "@storybook/addon-options": "4.0.0-alpha.7", + "@storybook/addon-storysource": "4.0.0-alpha.7", + "@storybook/addon-viewport": "4.0.0-alpha.7", + "@storybook/polymer": "4.0.0-alpha.7", "@webcomponents/webcomponentsjs": "^1.2.0", "global": "^4.3.2", "lit-html": "^0.10.0", diff --git a/examples/vue-kitchen-sink/package.json b/examples/vue-kitchen-sink/package.json index eaecfdff9f9..540fd40e79a 100644 --- a/examples/vue-kitchen-sink/package.json +++ b/examples/vue-kitchen-sink/package.json @@ -1,6 +1,6 @@ { "name": "vue-example", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "private": true, "scripts": { "build": "cross-env NODE_ENV=production webpack --progress --hide-modules", @@ -13,18 +13,18 @@ "vuex": "^3.0.0" }, "devDependencies": { - "@storybook/addon-actions": "4.0.0-alpha.6", - "@storybook/addon-backgrounds": "4.0.0-alpha.6", - "@storybook/addon-centered": "4.0.0-alpha.6", - "@storybook/addon-knobs": "4.0.0-alpha.6", - "@storybook/addon-links": "4.0.0-alpha.6", - "@storybook/addon-notes": "4.0.0-alpha.6", - "@storybook/addon-options": "4.0.0-alpha.6", - "@storybook/addon-storyshots": "4.0.0-alpha.6", - "@storybook/addon-storysource": "4.0.0-alpha.6", - "@storybook/addon-viewport": "4.0.0-alpha.6", - "@storybook/addons": "4.0.0-alpha.6", - "@storybook/vue": "4.0.0-alpha.6", + "@storybook/addon-actions": "4.0.0-alpha.7", + "@storybook/addon-backgrounds": "4.0.0-alpha.7", + "@storybook/addon-centered": "4.0.0-alpha.7", + "@storybook/addon-knobs": "4.0.0-alpha.7", + "@storybook/addon-links": "4.0.0-alpha.7", + "@storybook/addon-notes": "4.0.0-alpha.7", + "@storybook/addon-options": "4.0.0-alpha.7", + "@storybook/addon-storyshots": "4.0.0-alpha.7", + "@storybook/addon-storysource": "4.0.0-alpha.7", + "@storybook/addon-viewport": "4.0.0-alpha.7", + "@storybook/addons": "4.0.0-alpha.7", + "@storybook/vue": "4.0.0-alpha.7", "babel-core": "^6.26.3", "babel-loader": "^7.1.4", "babel-preset-env": "^1.6.0", diff --git a/lerna.json b/lerna.json index 89f5b048714..839c115d8a7 100644 --- a/lerna.json +++ b/lerna.json @@ -7,5 +7,5 @@ } }, "concurrency": 1, - "version": "4.0.0-alpha.6" + "version": "4.0.0-alpha.7" } diff --git a/lib/addons/package.json b/lib/addons/package.json index 67665ae008d..c7ce44e0c25 100644 --- a/lib/addons/package.json +++ b/lib/addons/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/addons", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Storybook addons store", "keywords": [ "storybook" @@ -20,7 +20,7 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/channels": "4.0.0-alpha.6", + "@storybook/channels": "4.0.0-alpha.7", "global": "^4.3.2", "util-deprecate": "^1.0.2" } diff --git a/lib/channel-postmessage/package.json b/lib/channel-postmessage/package.json index 5de482dbb75..ecbf249429e 100644 --- a/lib/channel-postmessage/package.json +++ b/lib/channel-postmessage/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/channel-postmessage", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "", "license": "MIT", "main": "dist/index.js", @@ -9,7 +9,7 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/channels": "4.0.0-alpha.6", + "@storybook/channels": "4.0.0-alpha.7", "global": "^4.3.2", "json-stringify-safe": "^5.0.1" } diff --git a/lib/channel-websocket/package.json b/lib/channel-websocket/package.json index c68d530de02..3d2df3a04c3 100644 --- a/lib/channel-websocket/package.json +++ b/lib/channel-websocket/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/channel-websocket", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "", "license": "MIT", "main": "dist/index.js", @@ -9,7 +9,7 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/channels": "4.0.0-alpha.6", + "@storybook/channels": "4.0.0-alpha.7", "global": "^4.3.2" } } diff --git a/lib/channels/package.json b/lib/channels/package.json index 4c6fbfa68c9..63cec4ed079 100644 --- a/lib/channels/package.json +++ b/lib/channels/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/channels", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "", "license": "MIT", "main": "dist/index.js", diff --git a/lib/cli/package.json b/lib/cli/package.json index dfc2a5c7bc3..291c3be6e34 100644 --- a/lib/cli/package.json +++ b/lib/cli/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/cli", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Storybook's CLI - easiest method of adding storybook to your projects", "keywords": [ "cli", @@ -25,7 +25,7 @@ "test-latest-cra": "cd test && ./test_latest_cra.sh" }, "dependencies": { - "@storybook/codemod": "4.0.0-alpha.6", + "@storybook/codemod": "4.0.0-alpha.7", "babel-plugin-transform-runtime": "^6.23.0", "babel-preset-env": "^1.6.0", "babel-register": "^6.26.0", @@ -42,28 +42,28 @@ "update-notifier": "^2.5.0" }, "devDependencies": { - "@storybook/addon-actions": "4.0.0-alpha.6", - "@storybook/addon-centered": "4.0.0-alpha.6", - "@storybook/addon-graphql": "4.0.0-alpha.6", - "@storybook/addon-info": "4.0.0-alpha.6", - "@storybook/addon-knobs": "4.0.0-alpha.6", - "@storybook/addon-links": "4.0.0-alpha.6", - "@storybook/addon-notes": "4.0.0-alpha.6", - "@storybook/addon-options": "4.0.0-alpha.6", - "@storybook/addon-storyshots": "4.0.0-alpha.6", - "@storybook/addons": "4.0.0-alpha.6", - "@storybook/angular": "4.0.0-alpha.6", - "@storybook/channel-postmessage": "4.0.0-alpha.6", - "@storybook/channel-websocket": "4.0.0-alpha.6", - "@storybook/channels": "4.0.0-alpha.6", - "@storybook/html": "4.0.0-alpha.6", - "@storybook/marko": "4.0.0-alpha.6", - "@storybook/mithril": "4.0.0-alpha.6", - "@storybook/polymer": "4.0.0-alpha.6", - "@storybook/react": "4.0.0-alpha.6", - "@storybook/react-native": "4.0.0-alpha.6", - "@storybook/ui": "4.0.0-alpha.6", - "@storybook/vue": "4.0.0-alpha.6", + "@storybook/addon-actions": "4.0.0-alpha.7", + "@storybook/addon-centered": "4.0.0-alpha.7", + "@storybook/addon-graphql": "4.0.0-alpha.7", + "@storybook/addon-info": "4.0.0-alpha.7", + "@storybook/addon-knobs": "4.0.0-alpha.7", + "@storybook/addon-links": "4.0.0-alpha.7", + "@storybook/addon-notes": "4.0.0-alpha.7", + "@storybook/addon-options": "4.0.0-alpha.7", + "@storybook/addon-storyshots": "4.0.0-alpha.7", + "@storybook/addons": "4.0.0-alpha.7", + "@storybook/angular": "4.0.0-alpha.7", + "@storybook/channel-postmessage": "4.0.0-alpha.7", + "@storybook/channel-websocket": "4.0.0-alpha.7", + "@storybook/channels": "4.0.0-alpha.7", + "@storybook/html": "4.0.0-alpha.7", + "@storybook/marko": "4.0.0-alpha.7", + "@storybook/mithril": "4.0.0-alpha.7", + "@storybook/polymer": "4.0.0-alpha.7", + "@storybook/react": "4.0.0-alpha.7", + "@storybook/react-native": "4.0.0-alpha.7", + "@storybook/ui": "4.0.0-alpha.7", + "@storybook/vue": "4.0.0-alpha.7", "check-node-version": "3.2.0", "npx": "10.2.0" } diff --git a/lib/client-logger/package.json b/lib/client-logger/package.json index 3f6a4bb666c..06049f8454b 100644 --- a/lib/client-logger/package.json +++ b/lib/client-logger/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/client-logger", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "", "license": "MIT", "main": "dist/index.js", diff --git a/lib/codemod/package.json b/lib/codemod/package.json index 2a01b77bb08..5489c8ffee7 100644 --- a/lib/codemod/package.json +++ b/lib/codemod/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/codemod", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "A collection of codemod scripts written with JSCodeshift", "license": "MIT", "main": "dist/index.js", diff --git a/lib/components/package.json b/lib/components/package.json index ca5423e4e6e..ddf2a11be68 100644 --- a/lib/components/package.json +++ b/lib/components/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/components", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Core Storybook Components", "license": "MIT", "main": "dist/index.js", @@ -24,8 +24,8 @@ "react-dom": "*" }, "devDependencies": { - "@storybook/addon-actions": "4.0.0-alpha.6", - "@storybook/addon-knobs": "4.0.0-alpha.6", - "@storybook/react": "4.0.0-alpha.6" + "@storybook/addon-actions": "4.0.0-alpha.7", + "@storybook/addon-knobs": "4.0.0-alpha.7", + "@storybook/react": "4.0.0-alpha.7" } } diff --git a/lib/core-events/package.json b/lib/core-events/package.json index bdb95754f5e..0d4d0a993de 100644 --- a/lib/core-events/package.json +++ b/lib/core-events/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/core-events", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Event names used in storybook core", "license": "MIT", "main": "index.js" diff --git a/lib/core/package.json b/lib/core/package.json index 4991b975a11..fdaf34e9978 100644 --- a/lib/core/package.json +++ b/lib/core/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/core", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Storybook framework-agnostic API", "homepage": "https://github.com/storybooks/storybook/tree/master/lib/core", "bugs": { @@ -16,12 +16,12 @@ "prepare": "node ../../scripts/prepare.js" }, "dependencies": { - "@storybook/addons": "4.0.0-alpha.6", - "@storybook/channel-postmessage": "4.0.0-alpha.6", - "@storybook/client-logger": "4.0.0-alpha.6", - "@storybook/core-events": "4.0.0-alpha.6", - "@storybook/node-logger": "4.0.0-alpha.6", - "@storybook/ui": "4.0.0-alpha.6", + "@storybook/addons": "4.0.0-alpha.7", + "@storybook/channel-postmessage": "4.0.0-alpha.7", + "@storybook/client-logger": "4.0.0-alpha.7", + "@storybook/core-events": "4.0.0-alpha.7", + "@storybook/node-logger": "4.0.0-alpha.7", + "@storybook/ui": "4.0.0-alpha.7", "autoprefixer": "^8.4.1", "babel-runtime": "^6.26.0", "chalk": "^2.4.1", diff --git a/lib/node-logger/package.json b/lib/node-logger/package.json index 004f2248b29..b460dafe90a 100644 --- a/lib/node-logger/package.json +++ b/lib/node-logger/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/node-logger", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "", "license": "MIT", "main": "dist/index.js", diff --git a/lib/ui/package.json b/lib/ui/package.json index b4815a83e17..ad48b153c67 100644 --- a/lib/ui/package.json +++ b/lib/ui/package.json @@ -1,6 +1,6 @@ { "name": "@storybook/ui", - "version": "4.0.0-alpha.6", + "version": "4.0.0-alpha.7", "description": "Core Storybook UI", "license": "MIT", "main": "dist/index.js", @@ -15,8 +15,8 @@ "storybook": "start-storybook -p 9010" }, "dependencies": { - "@storybook/components": "4.0.0-alpha.6", - "@storybook/core-events": "4.0.0-alpha.6", + "@storybook/components": "4.0.0-alpha.7", + "@storybook/core-events": "4.0.0-alpha.7", "@storybook/mantra-core": "^1.7.2", "@storybook/podda": "^1.2.3", "@storybook/react-komposer": "^2.0.4", @@ -44,7 +44,7 @@ "react-dom": "*" }, "devDependencies": { - "@storybook/addon-actions": "4.0.0-alpha.6", - "@storybook/react": "4.0.0-alpha.6" + "@storybook/addon-actions": "4.0.0-alpha.7", + "@storybook/react": "4.0.0-alpha.7" } } From 1facf9343d0856fb5ff8dd263ce4f1c23e4ec0f6 Mon Sep 17 00:00:00 2001 From: Michael Shilman Date: Thu, 17 May 2018 16:18:54 -0700 Subject: [PATCH 140/143] 4.0.0-alpha.7 snapshots --- lib/cli/test/snapshots/angular-cli/package.json | 10 +++++----- lib/cli/test/snapshots/marko/package.json | 2 +- lib/cli/test/snapshots/meteor/package.json | 8 ++++---- lib/cli/test/snapshots/mithril/package.json | 8 ++++---- lib/cli/test/snapshots/polymer/package.json | 2 +- lib/cli/test/snapshots/react/package.json | 8 ++++---- lib/cli/test/snapshots/react_native/package.json | 8 ++++---- .../test/snapshots/react_native_scripts/package.json | 8 ++++---- lib/cli/test/snapshots/react_project/package.json | 8 ++++---- lib/cli/test/snapshots/react_scripts/package.json | 8 ++++---- lib/cli/test/snapshots/sfc_vue/package.json | 8 ++++---- .../update_package_organisations/package.json | 4 ++-- lib/cli/test/snapshots/vue/package.json | 8 ++++---- lib/cli/test/snapshots/webpack_react/package.json | 8 ++++---- 14 files changed, 49 insertions(+), 49 deletions(-) diff --git a/lib/cli/test/snapshots/angular-cli/package.json b/lib/cli/test/snapshots/angular-cli/package.json index ce55dffe43b..f7010323758 100644 --- a/lib/cli/test/snapshots/angular-cli/package.json +++ b/lib/cli/test/snapshots/angular-cli/package.json @@ -44,10 +44,10 @@ "ts-node": "1.2.1", "tslint": "^4.3.0", "typescript": "~2.4.0", - "@storybook/angular": "^4.0.0-alpha.6", - "@storybook/addon-notes": "^4.0.0-alpha.6", - "@storybook/addon-actions": "^4.0.0-alpha.6", - "@storybook/addon-links": "^4.0.0-alpha.6", - "@storybook/addons": "^4.0.0-alpha.6" + "@storybook/angular": "^4.0.0-alpha.7", + "@storybook/addon-notes": "^4.0.0-alpha.7", + "@storybook/addon-actions": "^4.0.0-alpha.7", + "@storybook/addon-links": "^4.0.0-alpha.7", + "@storybook/addons": "^4.0.0-alpha.7" } } diff --git a/lib/cli/test/snapshots/marko/package.json b/lib/cli/test/snapshots/marko/package.json index d70c2bff6c3..dff99cd303e 100644 --- a/lib/cli/test/snapshots/marko/package.json +++ b/lib/cli/test/snapshots/marko/package.json @@ -7,7 +7,7 @@ "marko": "^4.9.7" }, "devDependencies": { - "@storybook/marko": "^4.0.0-alpha.6", + "@storybook/marko": "^4.0.0-alpha.7", "babel-core": "^6.26.3", "babel-runtime": "^6.26.0" }, diff --git a/lib/cli/test/snapshots/meteor/package.json b/lib/cli/test/snapshots/meteor/package.json index 0b3a0f667ba..2d2a0395ba5 100644 --- a/lib/cli/test/snapshots/meteor/package.json +++ b/lib/cli/test/snapshots/meteor/package.json @@ -19,9 +19,9 @@ "babel-preset-react": "^6.24.1", "babel-preset-stage-1": "^6.24.1", "babel-root-slash-import": "^1.1.0", - "@storybook/react": "^4.0.0-alpha.6", - "@storybook/addon-actions": "^4.0.0-alpha.6", - "@storybook/addon-links": "^4.0.0-alpha.6", - "@storybook/addons": "^4.0.0-alpha.6" + "@storybook/react": "^4.0.0-alpha.7", + "@storybook/addon-actions": "^4.0.0-alpha.7", + "@storybook/addon-links": "^4.0.0-alpha.7", + "@storybook/addons": "^4.0.0-alpha.7" } } diff --git a/lib/cli/test/snapshots/mithril/package.json b/lib/cli/test/snapshots/mithril/package.json index 7945b7b44c2..0230cf535d1 100644 --- a/lib/cli/test/snapshots/mithril/package.json +++ b/lib/cli/test/snapshots/mithril/package.json @@ -12,10 +12,10 @@ "mithril": "^1.1.6" }, "devDependencies": { - "@storybook/addon-actions": "^4.0.0-alpha.6", - "@storybook/addon-links": "^4.0.0-alpha.6", - "@storybook/addons": "^4.0.0-alpha.6", - "@storybook/mithril": "^4.0.0-alpha.6", + "@storybook/addon-actions": "^4.0.0-alpha.7", + "@storybook/addon-links": "^4.0.0-alpha.7", + "@storybook/addons": "^4.0.0-alpha.7", + "@storybook/mithril": "^4.0.0-alpha.7", "babel-core": "^6.26.3", "babel-plugin-transform-react-jsx": "^6.24.1" } diff --git a/lib/cli/test/snapshots/polymer/package.json b/lib/cli/test/snapshots/polymer/package.json index d7325425f79..da2afb56e48 100644 --- a/lib/cli/test/snapshots/polymer/package.json +++ b/lib/cli/test/snapshots/polymer/package.json @@ -12,7 +12,7 @@ "@polymer/polymer": "^2.2.0" }, "devDependencies": { - "@storybook/polymer": "^4.0.0-alpha.6", + "@storybook/polymer": "^4.0.0-alpha.7", "babel-core": "^6.26.3", "babel-runtime": "^6.26.0", "polymer-webpack-loader": "^2.0.2" diff --git a/lib/cli/test/snapshots/react/package.json b/lib/cli/test/snapshots/react/package.json index 9018bfc2b9e..9415b3c6b8f 100644 --- a/lib/cli/test/snapshots/react/package.json +++ b/lib/cli/test/snapshots/react/package.json @@ -20,10 +20,10 @@ "rollup-plugin-commonjs": "^8.2.0", "rollup-plugin-node-resolve": "^3.0.0", "rollup-plugin-replace": "^1.1.1", - "@storybook/react": "^4.0.0-alpha.6", - "@storybook/addon-actions": "^4.0.0-alpha.6", - "@storybook/addon-links": "^4.0.0-alpha.6", - "@storybook/addons": "^4.0.0-alpha.6", + "@storybook/react": "^4.0.0-alpha.7", + "@storybook/addon-actions": "^4.0.0-alpha.7", + "@storybook/addon-links": "^4.0.0-alpha.7", + "@storybook/addons": "^4.0.0-alpha.7", "babel-core": "^6.26.3", "babel-runtime": "^6.26.0" } diff --git a/lib/cli/test/snapshots/react_native/package.json b/lib/cli/test/snapshots/react_native/package.json index 23864bb1913..c87a93f04c0 100644 --- a/lib/cli/test/snapshots/react_native/package.json +++ b/lib/cli/test/snapshots/react_native/package.json @@ -16,10 +16,10 @@ "babel-preset-react-native": "3.0.1", "jest": "20.0.4", "react-test-renderer": "16.0.0-alpha.12", - "@storybook/react-native": "^4.0.0-alpha.6", - "@storybook/addon-actions": "^4.0.0-alpha.6", - "@storybook/addon-links": "^4.0.0-alpha.6", - "@storybook/addons": "^4.0.0-alpha.6", + "@storybook/react-native": "^4.0.0-alpha.7", + "@storybook/addon-actions": "^4.0.0-alpha.7", + "@storybook/addon-links": "^4.0.0-alpha.7", + "@storybook/addons": "^4.0.0-alpha.7", "babel-core": "^6.26.3", "babel-runtime": "^6.26.0", "react-dom": "16.0.0-alpha.12", diff --git a/lib/cli/test/snapshots/react_native_scripts/package.json b/lib/cli/test/snapshots/react_native_scripts/package.json index 2b1fbaabba6..bb2af42a79c 100644 --- a/lib/cli/test/snapshots/react_native_scripts/package.json +++ b/lib/cli/test/snapshots/react_native_scripts/package.json @@ -6,10 +6,10 @@ "react-native-scripts": "1.3.1", "jest-expo": "~20.0.0", "react-test-renderer": "16.0.0-alpha.12", - "@storybook/react-native": "^4.0.0-alpha.6", - "@storybook/addon-actions": "^4.0.0-alpha.6", - "@storybook/addon-links": "^4.0.0-alpha.6", - "@storybook/addons": "^4.0.0-alpha.6", + "@storybook/react-native": "^4.0.0-alpha.7", + "@storybook/addon-actions": "^4.0.0-alpha.7", + "@storybook/addon-links": "^4.0.0-alpha.7", + "@storybook/addons": "^4.0.0-alpha.7", "babel-core": "^6.26.3", "babel-runtime": "^6.26.0", "react-dom": "16.0.0-alpha.12", diff --git a/lib/cli/test/snapshots/react_project/package.json b/lib/cli/test/snapshots/react_project/package.json index 7f1c12be6d3..801584256f1 100644 --- a/lib/cli/test/snapshots/react_project/package.json +++ b/lib/cli/test/snapshots/react_project/package.json @@ -13,10 +13,10 @@ "babel-preset-react": "^6.24.1", "react": "^15.6.1", "react-dom": "^15.6.1", - "@storybook/react": "^4.0.0-alpha.6", - "@storybook/addon-actions": "^4.0.0-alpha.6", - "@storybook/addon-links": "^4.0.0-alpha.6", - "@storybook/addons": "^4.0.0-alpha.6", + "@storybook/react": "^4.0.0-alpha.7", + "@storybook/addon-actions": "^4.0.0-alpha.7", + "@storybook/addon-links": "^4.0.0-alpha.7", + "@storybook/addons": "^4.0.0-alpha.7", "babel-core": "^6.26.3", "babel-runtime": "^6.26.0" }, diff --git a/lib/cli/test/snapshots/react_scripts/package.json b/lib/cli/test/snapshots/react_scripts/package.json index 991852b7b1d..f30fbaa57de 100644 --- a/lib/cli/test/snapshots/react_scripts/package.json +++ b/lib/cli/test/snapshots/react_scripts/package.json @@ -16,10 +16,10 @@ "build-storybook": "build-storybook -s public" }, "devDependencies": { - "@storybook/react": "^4.0.0-alpha.6", - "@storybook/addon-actions": "^4.0.0-alpha.6", - "@storybook/addon-links": "^4.0.0-alpha.6", - "@storybook/addons": "^4.0.0-alpha.6", + "@storybook/react": "^4.0.0-alpha.7", + "@storybook/addon-actions": "^4.0.0-alpha.7", + "@storybook/addon-links": "^4.0.0-alpha.7", + "@storybook/addons": "^4.0.0-alpha.7", "babel-core": "^6.26.3", "babel-runtime": "^6.26.0" } diff --git a/lib/cli/test/snapshots/sfc_vue/package.json b/lib/cli/test/snapshots/sfc_vue/package.json index 2b027813224..9fec216634a 100644 --- a/lib/cli/test/snapshots/sfc_vue/package.json +++ b/lib/cli/test/snapshots/sfc_vue/package.json @@ -49,10 +49,10 @@ "webpack-dev-middleware": "^1.10.0", "webpack-hot-middleware": "^2.18.0", "webpack-merge": "^4.1.0", - "@storybook/vue": "^4.0.0-alpha.6", - "@storybook/addon-actions": "^4.0.0-alpha.6", - "@storybook/addon-links": "^4.0.0-alpha.6", - "@storybook/addons": "^4.0.0-alpha.6", + "@storybook/vue": "^4.0.0-alpha.7", + "@storybook/addon-actions": "^4.0.0-alpha.7", + "@storybook/addon-links": "^4.0.0-alpha.7", + "@storybook/addons": "^4.0.0-alpha.7", "babel-preset-vue": "^2.0.2" }, "engines": { diff --git a/lib/cli/test/snapshots/update_package_organisations/package.json b/lib/cli/test/snapshots/update_package_organisations/package.json index e65abab8d79..d7135ef2735 100644 --- a/lib/cli/test/snapshots/update_package_organisations/package.json +++ b/lib/cli/test/snapshots/update_package_organisations/package.json @@ -8,8 +8,8 @@ "react-scripts": "0.9.x" }, "devDependencies": { - "@storybook/react": "^4.0.0-alpha.6", - "@storybook/addons": "^4.0.0-alpha.6", + "@storybook/react": "^4.0.0-alpha.7", + "@storybook/addons": "^4.0.0-alpha.7", "babel-core": "^6.26.3", "babel-runtime": "^6.26.0" }, diff --git a/lib/cli/test/snapshots/vue/package.json b/lib/cli/test/snapshots/vue/package.json index 0638192bff5..c7f9b711103 100644 --- a/lib/cli/test/snapshots/vue/package.json +++ b/lib/cli/test/snapshots/vue/package.json @@ -34,10 +34,10 @@ "rollup-plugin-serve": "^0.4.0", "rollup-plugin-vue": "^2.4.0", "rollup-watch": "^4.0.0", - "@storybook/vue": "^4.0.0-alpha.6", - "@storybook/addon-actions": "^4.0.0-alpha.6", - "@storybook/addon-links": "^4.0.0-alpha.6", - "@storybook/addons": "^4.0.0-alpha.6", + "@storybook/vue": "^4.0.0-alpha.7", + "@storybook/addon-actions": "^4.0.0-alpha.7", + "@storybook/addon-links": "^4.0.0-alpha.7", + "@storybook/addons": "^4.0.0-alpha.7", "babel-preset-vue": "^2.0.2" } } diff --git a/lib/cli/test/snapshots/webpack_react/package.json b/lib/cli/test/snapshots/webpack_react/package.json index 050dbb197fd..a77dda266ee 100644 --- a/lib/cli/test/snapshots/webpack_react/package.json +++ b/lib/cli/test/snapshots/webpack_react/package.json @@ -17,10 +17,10 @@ "babel-loader": "^7.1.2", "babel-preset-react": "^6.24.1", "webpack": "^3.5.5", - "@storybook/react": "^4.0.0-alpha.6", - "@storybook/addon-actions": "^4.0.0-alpha.6", - "@storybook/addon-links": "^4.0.0-alpha.6", - "@storybook/addons": "^4.0.0-alpha.6", + "@storybook/react": "^4.0.0-alpha.7", + "@storybook/addon-actions": "^4.0.0-alpha.7", + "@storybook/addon-links": "^4.0.0-alpha.7", + "@storybook/addons": "^4.0.0-alpha.7", "babel-runtime": "^6.26.0" } } From 2fa996193ccbea4223a3adf214e5017ff6ffa552 Mon Sep 17 00:00:00 2001 From: Hypnosphi Date: Fri, 18 May 2018 03:01:22 +0300 Subject: [PATCH 141/143] Revert "Update babel-preset-minify from 0.4.1 to 0.4.2 in app/polymer" This reverts commit 18daf67 --- app/polymer/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/polymer/package.json b/app/polymer/package.json index b6e2e62aadd..b8970dda06c 100644 --- a/app/polymer/package.json +++ b/app/polymer/package.json @@ -31,7 +31,7 @@ "babel-plugin-transform-runtime": "^6.23.0", "babel-polyfill": "^6.26.0", "babel-preset-env": "^1.7.0", - "babel-preset-minify": "^0.4.2", + "babel-preset-minify": "^0.4.1", "babel-preset-stage-0": "^6.24.1", "babel-runtime": "^6.26.0", "case-sensitive-paths-webpack-plugin": "^2.1.2", From 0c07633a723365870dc4235bcbf20137c799a1b9 Mon Sep 17 00:00:00 2001 From: Hypnosphi Date: Fri, 18 May 2018 03:08:22 +0300 Subject: [PATCH 142/143] Revert "batch bootstrap" This reverts commit 5e29054 --- yarn.lock | 904 ++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 564 insertions(+), 340 deletions(-) diff --git a/yarn.lock b/yarn.lock index caca227559a..ae9a5c50905 100644 --- a/yarn.lock +++ b/yarn.lock @@ -417,9 +417,9 @@ version "6.0.96" resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.96.tgz#7bf0bf40d6ce51e93762cc47d010c8cc5ebb2179" -"@types/node@~9.6.15": - version "9.6.15" - resolved "https://registry.yarnpkg.com/@types/node/-/node-9.6.15.tgz#8a5a313ea0a43a95277235841be5d3f5fb3dfeda" +"@types/node@~9.6.12": + version "9.6.12" + resolved "https://registry.yarnpkg.com/@types/node/-/node-9.6.12.tgz#ab2d716505858ebc8ee94b347b5c9d311eb81b72" "@types/parse5@^2.2.32": version "2.2.34" @@ -435,120 +435,226 @@ version "2.53.43" resolved "https://registry.yarnpkg.com/@types/selenium-webdriver/-/selenium-webdriver-2.53.43.tgz#2de3d718819bc20165754c4a59afb7e9833f6707" -"@webassemblyjs/ast@1.4.3": - version "1.4.3" - resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.4.3.tgz#3b3f6fced944d8660273347533e6d4d315b5934a" +"@webassemblyjs/ast@1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.3.0.tgz#524246cd578c30ff792d0c7b49bb0a0f89191dd2" dependencies: - "@webassemblyjs/helper-wasm-bytecode" "1.4.3" - "@webassemblyjs/wast-parser" "1.4.3" - debug "^3.1.0" - webassemblyjs "1.4.3" + "@webassemblyjs/helper-wasm-bytecode" "1.3.0" + "@webassemblyjs/wast-parser" "1.3.0" + webassemblyjs "1.3.0" -"@webassemblyjs/floating-point-hex-parser@1.4.3": - version "1.4.3" - resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.4.3.tgz#f5aee4c376a717c74264d7bacada981e7e44faad" - -"@webassemblyjs/helper-buffer@1.4.3": - version "1.4.3" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.4.3.tgz#0434b55958519bf503697d3824857b1dea80b729" +"@webassemblyjs/ast@1.3.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.3.1.tgz#3081b4b3ff0af733aa5ba573af998f33711293f8" dependencies: - debug "^3.1.0" + "@webassemblyjs/helper-wasm-bytecode" "1.3.1" + "@webassemblyjs/wast-parser" "1.3.1" + webassemblyjs "1.3.1" -"@webassemblyjs/helper-code-frame@1.4.3": - version "1.4.3" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.4.3.tgz#f1349ca3e01a8e29ee2098c770773ef97af43641" +"@webassemblyjs/floating-point-hex-parser@1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.3.0.tgz#a32574e1327a946c78711179fda8bcc808285913" + +"@webassemblyjs/floating-point-hex-parser@1.3.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.3.1.tgz#82646903ba25c3e5d88dec41ecb4e4d770615bfc" + +"@webassemblyjs/helper-buffer@1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.3.0.tgz#790599218673099863b6f5f84d36cc8caab861b2" + +"@webassemblyjs/helper-buffer@1.3.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.3.1.tgz#aa66bb6c274a7e5610d7468f94a2702186713bc6" + +"@webassemblyjs/helper-code-frame@1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.3.0.tgz#8f7d4cd9a2aed3c633cdd79aa660e96279a349bf" dependencies: - "@webassemblyjs/wast-printer" "1.4.3" + "@webassemblyjs/wast-printer" "1.3.0" -"@webassemblyjs/helper-fsm@1.4.3": - version "1.4.3" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.4.3.tgz#65a921db48fb43e868f17b27497870bdcae22b79" - -"@webassemblyjs/helper-wasm-bytecode@1.4.3": - version "1.4.3" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.4.3.tgz#0e5b4b5418e33f8a26e940b7809862828c3721a5" - -"@webassemblyjs/helper-wasm-section@1.4.3": - version "1.4.3" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.4.3.tgz#9ceedd53a3f152c3412e072887ade668d0b1acbf" +"@webassemblyjs/helper-code-frame@1.3.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.3.1.tgz#b5eba87cf37992e8a62c402545aed87dfd02be83" dependencies: - "@webassemblyjs/ast" "1.4.3" - "@webassemblyjs/helper-buffer" "1.4.3" - "@webassemblyjs/helper-wasm-bytecode" "1.4.3" - "@webassemblyjs/wasm-gen" "1.4.3" - debug "^3.1.0" + "@webassemblyjs/wast-printer" "1.3.1" -"@webassemblyjs/leb128@1.4.3": - version "1.4.3" - resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.4.3.tgz#5a5e5949dbb5adfe3ae95664d0439927ac557fb8" +"@webassemblyjs/helper-fsm@1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.3.0.tgz#515141ec51c47b892def606dfc706e7708d4398a" + +"@webassemblyjs/helper-fsm@1.3.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.3.1.tgz#297113d09a9541613eaeb265d7f948c5e03eb0a2" + +"@webassemblyjs/helper-wasm-bytecode@1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.3.0.tgz#d23d55fcef04e4f24d6728e31bda8f1257293f91" + +"@webassemblyjs/helper-wasm-bytecode@1.3.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.3.1.tgz#53b0308988e3a0cad836c83fc0801255906608f8" + +"@webassemblyjs/helper-wasm-section@1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.3.0.tgz#a8c9435faca44734fc67dfaee4911ac8e6627bd7" + dependencies: + "@webassemblyjs/ast" "1.3.0" + "@webassemblyjs/helper-buffer" "1.3.0" + "@webassemblyjs/helper-wasm-bytecode" "1.3.0" + "@webassemblyjs/wasm-gen" "1.3.0" + +"@webassemblyjs/helper-wasm-section@1.3.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.3.1.tgz#3df13898e89a376ffb89439d216d9f0001bf9632" + dependencies: + "@webassemblyjs/ast" "1.3.1" + "@webassemblyjs/helper-buffer" "1.3.1" + "@webassemblyjs/helper-wasm-bytecode" "1.3.1" + "@webassemblyjs/wasm-gen" "1.3.1" + +"@webassemblyjs/leb128@1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.3.0.tgz#b9995160f0f94d785579a149716bb2cb0d102f08" dependencies: leb "^0.3.0" -"@webassemblyjs/validation@1.4.3": - version "1.4.3" - resolved "https://registry.yarnpkg.com/@webassemblyjs/validation/-/validation-1.4.3.tgz#9e66c9b3079d7bbcf2070c1bf52a54af2a09aac9" +"@webassemblyjs/leb128@1.3.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.3.1.tgz#e0cf1c585c72955637eeeabab1e2ab37c12c2338" dependencies: - "@webassemblyjs/ast" "1.4.3" + leb "^0.3.0" -"@webassemblyjs/wasm-edit@1.4.3": - version "1.4.3" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.4.3.tgz#87febd565e0ffb5ae25f6495bb3958d17aa0a779" +"@webassemblyjs/validation@1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/validation/-/validation-1.3.0.tgz#0a1261f414607a04e2ffebb1b3ea9777b35c97af" dependencies: - "@webassemblyjs/ast" "1.4.3" - "@webassemblyjs/helper-buffer" "1.4.3" - "@webassemblyjs/helper-wasm-bytecode" "1.4.3" - "@webassemblyjs/helper-wasm-section" "1.4.3" - "@webassemblyjs/wasm-gen" "1.4.3" - "@webassemblyjs/wasm-opt" "1.4.3" - "@webassemblyjs/wasm-parser" "1.4.3" - "@webassemblyjs/wast-printer" "1.4.3" + "@webassemblyjs/ast" "1.3.0" + +"@webassemblyjs/validation@1.3.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/validation/-/validation-1.3.1.tgz#ed0129d7ccca7858a3f46e7e47a6889008547a39" + dependencies: + "@webassemblyjs/ast" "1.3.1" + +"@webassemblyjs/wasm-edit@1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.3.0.tgz#48551c391aebb07e82634cd4ecf257456208a0d3" + dependencies: + "@webassemblyjs/ast" "1.3.0" + "@webassemblyjs/helper-buffer" "1.3.0" + "@webassemblyjs/helper-wasm-bytecode" "1.3.0" + "@webassemblyjs/helper-wasm-section" "1.3.0" + "@webassemblyjs/wasm-gen" "1.3.0" + "@webassemblyjs/wasm-opt" "1.3.0" + "@webassemblyjs/wasm-parser" "1.3.0" + "@webassemblyjs/wast-printer" "1.3.0" debug "^3.1.0" -"@webassemblyjs/wasm-gen@1.4.3": - version "1.4.3" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.4.3.tgz#8553164d0154a6be8f74d653d7ab355f73240aa4" +"@webassemblyjs/wasm-edit@1.3.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.3.1.tgz#a16ca4d9a12144b1b28d4e66ad1ad66ec65e479e" dependencies: - "@webassemblyjs/ast" "1.4.3" - "@webassemblyjs/helper-wasm-bytecode" "1.4.3" - "@webassemblyjs/leb128" "1.4.3" - -"@webassemblyjs/wasm-opt@1.4.3": - version "1.4.3" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.4.3.tgz#26c7a23bfb136aa405b1d3410e63408ec60894b8" - dependencies: - "@webassemblyjs/ast" "1.4.3" - "@webassemblyjs/helper-buffer" "1.4.3" - "@webassemblyjs/wasm-gen" "1.4.3" - "@webassemblyjs/wasm-parser" "1.4.3" + "@webassemblyjs/ast" "1.3.1" + "@webassemblyjs/helper-buffer" "1.3.1" + "@webassemblyjs/helper-wasm-bytecode" "1.3.1" + "@webassemblyjs/helper-wasm-section" "1.3.1" + "@webassemblyjs/wasm-gen" "1.3.1" + "@webassemblyjs/wasm-opt" "1.3.1" + "@webassemblyjs/wasm-parser" "1.3.1" + "@webassemblyjs/wast-printer" "1.3.1" debug "^3.1.0" -"@webassemblyjs/wasm-parser@1.4.3": - version "1.4.3" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.4.3.tgz#7ddd3e408f8542647ed612019cfb780830993698" +"@webassemblyjs/wasm-gen@1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.3.0.tgz#acf45b38159f351178aa14135e5efa4172931e9a" dependencies: - "@webassemblyjs/ast" "1.4.3" - "@webassemblyjs/helper-wasm-bytecode" "1.4.3" - "@webassemblyjs/leb128" "1.4.3" - "@webassemblyjs/wasm-parser" "1.4.3" - webassemblyjs "1.4.3" + "@webassemblyjs/ast" "1.3.0" + "@webassemblyjs/helper-wasm-bytecode" "1.3.0" + "@webassemblyjs/leb128" "1.3.0" -"@webassemblyjs/wast-parser@1.4.3": - version "1.4.3" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.4.3.tgz#3250402e2c5ed53dbe2233c9de1fe1f9f0d51745" +"@webassemblyjs/wasm-gen@1.3.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.3.1.tgz#43263fc56a0570e0564e407bbcd4c02e85167398" dependencies: - "@webassemblyjs/ast" "1.4.3" - "@webassemblyjs/floating-point-hex-parser" "1.4.3" - "@webassemblyjs/helper-code-frame" "1.4.3" - "@webassemblyjs/helper-fsm" "1.4.3" + "@webassemblyjs/ast" "1.3.1" + "@webassemblyjs/helper-wasm-bytecode" "1.3.1" + "@webassemblyjs/leb128" "1.3.1" + +"@webassemblyjs/wasm-opt@1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.3.0.tgz#958150b0d631eb407fc9b85b9a852526c849c015" + dependencies: + "@webassemblyjs/ast" "1.3.0" + "@webassemblyjs/helper-buffer" "1.3.0" + "@webassemblyjs/wasm-gen" "1.3.0" + "@webassemblyjs/wasm-parser" "1.3.0" + +"@webassemblyjs/wasm-opt@1.3.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.3.1.tgz#172601dcdaaacd6b0b002df1252033198c65eceb" + dependencies: + "@webassemblyjs/ast" "1.3.1" + "@webassemblyjs/helper-buffer" "1.3.1" + "@webassemblyjs/wasm-gen" "1.3.1" + "@webassemblyjs/wasm-parser" "1.3.1" + +"@webassemblyjs/wasm-parser@1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.3.0.tgz#66dd5ac632e0f938b1656bd46f01fe5f5f9488d0" + dependencies: + "@webassemblyjs/ast" "1.3.0" + "@webassemblyjs/helper-wasm-bytecode" "1.3.0" + "@webassemblyjs/leb128" "1.3.0" + "@webassemblyjs/wasm-parser" "1.3.0" + webassemblyjs "1.3.0" + +"@webassemblyjs/wasm-parser@1.3.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.3.1.tgz#76727be6c313a9b775170ed38a126558eed7e8ef" + dependencies: + "@webassemblyjs/ast" "1.3.1" + "@webassemblyjs/helper-wasm-bytecode" "1.3.1" + "@webassemblyjs/leb128" "1.3.1" + "@webassemblyjs/wasm-parser" "1.3.1" + webassemblyjs "1.3.1" + +"@webassemblyjs/wast-parser@1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.3.0.tgz#bfc692d8a159d5fde7c1fee0f4e6d848d5bbcb71" + dependencies: + "@webassemblyjs/ast" "1.3.0" + "@webassemblyjs/floating-point-hex-parser" "1.3.0" + "@webassemblyjs/helper-code-frame" "1.3.0" + "@webassemblyjs/helper-fsm" "1.3.0" long "^3.2.0" - webassemblyjs "1.4.3" + webassemblyjs "1.3.0" -"@webassemblyjs/wast-printer@1.4.3": - version "1.4.3" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.4.3.tgz#3d59aa8d0252d6814a3ef4e6d2a34c9ded3904e0" +"@webassemblyjs/wast-parser@1.3.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.3.1.tgz#62b6eba09580477868dd394cee3e3f5c64e1f3f8" dependencies: - "@webassemblyjs/ast" "1.4.3" - "@webassemblyjs/wast-parser" "1.4.3" + "@webassemblyjs/ast" "1.3.1" + "@webassemblyjs/floating-point-hex-parser" "1.3.1" + "@webassemblyjs/helper-code-frame" "1.3.1" + "@webassemblyjs/helper-fsm" "1.3.1" + long "^3.2.0" + webassemblyjs "1.3.1" + +"@webassemblyjs/wast-printer@1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.3.0.tgz#b4ed84f0fea9f222d540e25b262cd5eabfee84d4" + dependencies: + "@webassemblyjs/ast" "1.3.0" + "@webassemblyjs/wast-parser" "1.3.0" + long "^3.2.0" + +"@webassemblyjs/wast-printer@1.3.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.3.1.tgz#3e75b889e6f1ba2dfa854e4436b4287e7687e82c" + dependencies: + "@webassemblyjs/ast" "1.3.1" + "@webassemblyjs/wast-parser" "1.3.1" long "^3.2.0" "@webcomponents/webcomponentsjs@^1.2.0": @@ -1205,12 +1311,12 @@ autoprefixer@^7.2.3: postcss "^6.0.16" postcss-value-parser "^3.2.3" -autoprefixer@^8.5.0: - version "8.5.0" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-8.5.0.tgz#89a39b1316fbe7bc2b4997a0c7dad0149d99511c" +autoprefixer@^8.4.1: + version "8.4.1" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-8.4.1.tgz#c6b30001ea4b3daa6b611e50071f62dd24beb564" dependencies: - browserslist "^3.2.7" - caniuse-lite "^1.0.30000839" + browserslist "^3.2.6" + caniuse-lite "^1.0.30000832" normalize-range "^0.1.2" num2fraction "^1.2.2" postcss "^6.0.22" @@ -1390,9 +1496,13 @@ babel-helper-define-map@^6.24.1: babel-types "^6.26.0" lodash "^4.17.4" -babel-helper-evaluate-path@^0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/babel-helper-evaluate-path/-/babel-helper-evaluate-path-0.4.2.tgz#5bf57e3763778795651514b0eb87d68f78d22a2a" +babel-helper-evaluate-path@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/babel-helper-evaluate-path/-/babel-helper-evaluate-path-0.3.0.tgz#2439545e0b6eae5b7f49b790acbebd6b9a73df20" + +babel-helper-evaluate-path@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-helper-evaluate-path/-/babel-helper-evaluate-path-0.4.1.tgz#6b75c1e0e30f16629f2a8645ca305e1a8d3589a6" babel-helper-explode-assignable-expression@^6.24.1: version "6.24.1" @@ -1411,9 +1521,13 @@ babel-helper-explode-class@^6.24.1: babel-traverse "^6.24.1" babel-types "^6.24.1" -babel-helper-flip-expressions@^0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/babel-helper-flip-expressions/-/babel-helper-flip-expressions-0.4.2.tgz#c53ffc7cc5f3e625b2673260b8f9f7ba95c853db" +babel-helper-flip-expressions@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/babel-helper-flip-expressions/-/babel-helper-flip-expressions-0.3.0.tgz#f5b6394bd5219b43cf8f7b201535ed540c6e7fa2" + +babel-helper-flip-expressions@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-helper-flip-expressions/-/babel-helper-flip-expressions-0.4.1.tgz#cc03d80458c103b9f505c1c6a67fbe0f59cac320" babel-helper-function-name@^6.24.1: version "6.24.1" @@ -1443,13 +1557,21 @@ babel-helper-is-nodes-equiv@^0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/babel-helper-is-nodes-equiv/-/babel-helper-is-nodes-equiv-0.0.1.tgz#34e9b300b1479ddd98ec77ea0bbe9342dfe39684" -babel-helper-is-void-0@^0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/babel-helper-is-void-0/-/babel-helper-is-void-0-0.4.2.tgz#f5539bb934b8ffc99c6eb2dc38f322d22af9d43b" +babel-helper-is-void-0@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/babel-helper-is-void-0/-/babel-helper-is-void-0-0.3.0.tgz#95570d20bd27b2206f68083ae9980ee7003d8fe7" -babel-helper-mark-eval-scopes@^0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/babel-helper-mark-eval-scopes/-/babel-helper-mark-eval-scopes-0.4.2.tgz#bd68e8556aa12b7eeccb3f00ae86a63c0bd774d6" +babel-helper-is-void-0@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-helper-is-void-0/-/babel-helper-is-void-0-0.4.1.tgz#a20bb5dbba1c30c4aafe73eb327d2d18b284ed1a" + +babel-helper-mark-eval-scopes@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/babel-helper-mark-eval-scopes/-/babel-helper-mark-eval-scopes-0.3.0.tgz#b4731314fdd7a89091271a5213b4e12d236e29e8" + +babel-helper-mark-eval-scopes@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-helper-mark-eval-scopes/-/babel-helper-mark-eval-scopes-0.4.1.tgz#03f9cc98defa4747e7412e700f4ebd0fed64b571" babel-helper-optimise-call-expression@^6.24.1: version "6.24.1" @@ -1476,9 +1598,13 @@ babel-helper-remap-async-to-generator@^6.16.0, babel-helper-remap-async-to-gener babel-traverse "^6.24.1" babel-types "^6.24.1" -babel-helper-remove-or-void@^0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/babel-helper-remove-or-void/-/babel-helper-remove-or-void-0.4.2.tgz#86733475d7ea2498ac498055f8974b751788d79c" +babel-helper-remove-or-void@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/babel-helper-remove-or-void/-/babel-helper-remove-or-void-0.3.0.tgz#f43c86147c8fcc395a9528cbb31e7ff49d7e16e3" + +babel-helper-remove-or-void@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-helper-remove-or-void/-/babel-helper-remove-or-void-0.4.1.tgz#add5b0881785395112a70f0f1c259179b152426a" babel-helper-replace-supers@^6.24.1: version "6.24.1" @@ -1491,9 +1617,13 @@ babel-helper-replace-supers@^6.24.1: babel-traverse "^6.24.1" babel-types "^6.24.1" -babel-helper-to-multiple-sequence-expressions@^0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/babel-helper-to-multiple-sequence-expressions/-/babel-helper-to-multiple-sequence-expressions-0.4.2.tgz#566f5e93fb7051a36ae51c0f861aa8a4ff08b7a0" +babel-helper-to-multiple-sequence-expressions@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/babel-helper-to-multiple-sequence-expressions/-/babel-helper-to-multiple-sequence-expressions-0.3.0.tgz#8da2275ccc26995566118f7213abfd9af7214427" + +babel-helper-to-multiple-sequence-expressions@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-helper-to-multiple-sequence-expressions/-/babel-helper-to-multiple-sequence-expressions-0.4.1.tgz#154ecc38118f5c1c9b0e9fc235ddb5392149bc8f" babel-helper-vue-jsx-merge-props@^2.0.2: version "2.0.3" @@ -1607,76 +1737,141 @@ babel-plugin-macros@^2.0.0: dependencies: cosmiconfig "^4.0.0" -babel-plugin-macros@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.2.1.tgz#7cc0f84735aa86f776b51860793a98928f43a7fa" +babel-plugin-macros@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.2.0.tgz#31fc16748d6480697a517f692dc4421cb7bff0cc" dependencies: cosmiconfig "^4.0.0" -babel-plugin-minify-builtins@^0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-builtins/-/babel-plugin-minify-builtins-0.4.2.tgz#8d61f79d2ea815177f0eddba366d1a66b9e97b00" +babel-plugin-minify-builtins@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-builtins/-/babel-plugin-minify-builtins-0.3.0.tgz#4740117a6a784063aaf8f092989cf9e4bd484860" dependencies: - babel-helper-evaluate-path "^0.4.2" + babel-helper-evaluate-path "^0.3.0" -babel-plugin-minify-constant-folding@^0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-constant-folding/-/babel-plugin-minify-constant-folding-0.4.2.tgz#8a4826669310ad559623e310bb050a5f1149cfc5" +babel-plugin-minify-builtins@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-builtins/-/babel-plugin-minify-builtins-0.4.1.tgz#77a88cb7610ed925b1b0254a990240291e0b0be0" dependencies: - babel-helper-evaluate-path "^0.4.2" + babel-helper-evaluate-path "^0.4.1" -babel-plugin-minify-dead-code-elimination@^0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-dead-code-elimination/-/babel-plugin-minify-dead-code-elimination-0.4.2.tgz#b9cfa0efba1ef2d02dff4b4da1a8f7a40006c9c3" +babel-plugin-minify-constant-folding@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-constant-folding/-/babel-plugin-minify-constant-folding-0.3.0.tgz#687e40336bd4ddd921e0e197f0006235ac184bb9" dependencies: - babel-helper-evaluate-path "^0.4.2" - babel-helper-mark-eval-scopes "^0.4.2" - babel-helper-remove-or-void "^0.4.2" + babel-helper-evaluate-path "^0.3.0" + +babel-plugin-minify-constant-folding@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-constant-folding/-/babel-plugin-minify-constant-folding-0.4.1.tgz#2ed4f83b0ff28f4d5553d09c5efc85b5db62d112" + dependencies: + babel-helper-evaluate-path "^0.4.1" + +babel-plugin-minify-dead-code-elimination@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-dead-code-elimination/-/babel-plugin-minify-dead-code-elimination-0.3.0.tgz#a323f686c404b824186ba5583cf7996cac81719e" + dependencies: + babel-helper-evaluate-path "^0.3.0" + babel-helper-mark-eval-scopes "^0.3.0" + babel-helper-remove-or-void "^0.3.0" lodash.some "^4.6.0" -babel-plugin-minify-flip-comparisons@^0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-flip-comparisons/-/babel-plugin-minify-flip-comparisons-0.4.2.tgz#f754a8aa88b7a1b00fb86d7cf468358513a217ad" +babel-plugin-minify-dead-code-elimination@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-dead-code-elimination/-/babel-plugin-minify-dead-code-elimination-0.4.1.tgz#f35fcf348934eb0aac944502ad303729182eeb21" dependencies: - babel-helper-is-void-0 "^0.4.2" + babel-helper-evaluate-path "^0.4.1" + babel-helper-mark-eval-scopes "^0.4.1" + babel-helper-remove-or-void "^0.4.1" + lodash.some "^4.6.0" -babel-plugin-minify-guarded-expressions@^0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-guarded-expressions/-/babel-plugin-minify-guarded-expressions-0.4.2.tgz#b47ca0bf89eabbd710531d4c43fa03f2705f1add" +babel-plugin-minify-flip-comparisons@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-flip-comparisons/-/babel-plugin-minify-flip-comparisons-0.3.0.tgz#6627893a409c9f30ef7f2c89e0c6eea7ee97ddc4" dependencies: - babel-helper-flip-expressions "^0.4.2" + babel-helper-is-void-0 "^0.3.0" -babel-plugin-minify-infinity@^0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-infinity/-/babel-plugin-minify-infinity-0.4.2.tgz#fcb5d55fb1d2d51f324ba410801235257a63417f" - -babel-plugin-minify-mangle-names@^0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-mangle-names/-/babel-plugin-minify-mangle-names-0.4.2.tgz#50f44a141be07152945c2164c7d59cbcf34b497b" +babel-plugin-minify-flip-comparisons@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-flip-comparisons/-/babel-plugin-minify-flip-comparisons-0.4.1.tgz#e707e5dabc695c99cd2923fe970ed9ac78c4e70b" dependencies: - babel-helper-mark-eval-scopes "^0.4.2" + babel-helper-is-void-0 "^0.4.1" -babel-plugin-minify-numeric-literals@^0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-numeric-literals/-/babel-plugin-minify-numeric-literals-0.4.2.tgz#4a0101957110bd63a304cd86ce8d9205592726c1" - -babel-plugin-minify-replace@^0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-replace/-/babel-plugin-minify-replace-0.4.2.tgz#0e42dedd46b8b2dfda6d825a034f3956c847f998" - -babel-plugin-minify-simplify@^0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-simplify/-/babel-plugin-minify-simplify-0.4.2.tgz#1bc4f1cc0784295427dff0e2f3b9103ce79229ce" +babel-plugin-minify-guarded-expressions@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-guarded-expressions/-/babel-plugin-minify-guarded-expressions-0.3.0.tgz#2552d96189ef45d9a463f1a6b5e4fa110703ac8d" dependencies: - babel-helper-flip-expressions "^0.4.2" + babel-helper-flip-expressions "^0.3.0" + +babel-plugin-minify-guarded-expressions@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-guarded-expressions/-/babel-plugin-minify-guarded-expressions-0.4.1.tgz#ca5a59a06bc1c22dd5cfd996a675163a6f619b7d" + dependencies: + babel-helper-flip-expressions "^0.4.1" + +babel-plugin-minify-infinity@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-infinity/-/babel-plugin-minify-infinity-0.3.0.tgz#c5ec0edd433517cf31b3af17077c202beb48bbe7" + +babel-plugin-minify-infinity@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-infinity/-/babel-plugin-minify-infinity-0.4.1.tgz#cc9c37dcc1666dc07f1eb478c2b721a11cfb9491" + +babel-plugin-minify-mangle-names@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-mangle-names/-/babel-plugin-minify-mangle-names-0.3.0.tgz#f28561bad0dd2f0380816816bb946e219b3b6135" + dependencies: + babel-helper-mark-eval-scopes "^0.3.0" + +babel-plugin-minify-mangle-names@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-mangle-names/-/babel-plugin-minify-mangle-names-0.4.1.tgz#77be8fed350e931a3aa9a09f97f2826168083133" + dependencies: + babel-helper-mark-eval-scopes "^0.4.1" + +babel-plugin-minify-numeric-literals@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-numeric-literals/-/babel-plugin-minify-numeric-literals-0.3.0.tgz#b57734a612e8a592005407323c321119f27d4b40" + +babel-plugin-minify-numeric-literals@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-numeric-literals/-/babel-plugin-minify-numeric-literals-0.4.1.tgz#964b4e6cc7487c6d4a31a95197c3f421b60c9a47" + +babel-plugin-minify-replace@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-replace/-/babel-plugin-minify-replace-0.3.0.tgz#980125bbf7cbb5a637439de9d0b1b030a4693893" + +babel-plugin-minify-replace@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-replace/-/babel-plugin-minify-replace-0.4.1.tgz#c519d8858c622b2496a364a6135ad2775578d943" + +babel-plugin-minify-simplify@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-simplify/-/babel-plugin-minify-simplify-0.3.0.tgz#14574cc74d21c81d3060fafa041010028189f11b" + dependencies: + babel-helper-flip-expressions "^0.3.0" babel-helper-is-nodes-equiv "^0.0.1" - babel-helper-to-multiple-sequence-expressions "^0.4.2" + babel-helper-to-multiple-sequence-expressions "^0.3.0" -babel-plugin-minify-type-constructors@^0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-type-constructors/-/babel-plugin-minify-type-constructors-0.4.2.tgz#0a2fb314df7d54a9b8f8a2041272ba9c3f7bd73a" +babel-plugin-minify-simplify@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-simplify/-/babel-plugin-minify-simplify-0.4.1.tgz#5e55f489b2d5f02c908c2b309bf0814f15c757be" dependencies: - babel-helper-is-void-0 "^0.4.2" + babel-helper-flip-expressions "^0.4.1" + babel-helper-is-nodes-equiv "^0.0.1" + babel-helper-to-multiple-sequence-expressions "^0.4.1" + +babel-plugin-minify-type-constructors@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-type-constructors/-/babel-plugin-minify-type-constructors-0.3.0.tgz#7f5a86ef322c4746364e3c591b8514eeafea6ad4" + dependencies: + babel-helper-is-void-0 "^0.3.0" + +babel-plugin-minify-type-constructors@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-type-constructors/-/babel-plugin-minify-type-constructors-0.4.1.tgz#79224d1346c33e4fa442756a2342649158ef9448" + dependencies: + babel-helper-is-void-0 "^0.4.1" babel-plugin-react-docgen@^2.0.0-rc.0: version "2.0.0-rc.0" @@ -2015,21 +2210,25 @@ babel-plugin-transform-function-bind@^6.22.0: babel-plugin-syntax-function-bind "^6.8.0" babel-runtime "^6.22.0" -babel-plugin-transform-inline-consecutive-adds@^0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-inline-consecutive-adds/-/babel-plugin-transform-inline-consecutive-adds-0.4.2.tgz#98dba9acc3b73b1c59214ba69a3200c41870c3e9" +babel-plugin-transform-inline-consecutive-adds@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-inline-consecutive-adds/-/babel-plugin-transform-inline-consecutive-adds-0.3.0.tgz#f07d93689c0002ed2b2b62969bdd99f734e03f57" -babel-plugin-transform-member-expression-literals@^6.9.3: - version "6.9.3" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-member-expression-literals/-/babel-plugin-transform-member-expression-literals-6.9.3.tgz#aa4985cd0f17980ba8fbfd7cc8a662d3bfb7837d" +babel-plugin-transform-inline-consecutive-adds@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-inline-consecutive-adds/-/babel-plugin-transform-inline-consecutive-adds-0.4.1.tgz#175dedfe876c2ff7a78c751ed4d9dc0597d1171d" -babel-plugin-transform-merge-sibling-variables@^6.9.3: - version "6.9.3" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-merge-sibling-variables/-/babel-plugin-transform-merge-sibling-variables-6.9.3.tgz#2f5ae6cf326b8398cf89afb2a21ad18fe60542fd" +babel-plugin-transform-member-expression-literals@^6.9.0, babel-plugin-transform-member-expression-literals@^6.9.2: + version "6.9.2" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-member-expression-literals/-/babel-plugin-transform-member-expression-literals-6.9.2.tgz#1f397ab961a5c3a401f2a747af06e72004afcb76" -babel-plugin-transform-minify-booleans@^6.9.3: - version "6.9.3" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-minify-booleans/-/babel-plugin-transform-minify-booleans-6.9.3.tgz#9f2c039b928bf987e039b50d96545c4be79d4fb1" +babel-plugin-transform-merge-sibling-variables@^6.9.0, babel-plugin-transform-merge-sibling-variables@^6.9.2: + version "6.9.2" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-merge-sibling-variables/-/babel-plugin-transform-merge-sibling-variables-6.9.2.tgz#994a9004a79c79f0c91c496e8a2dbc7e9b73f7b4" + +babel-plugin-transform-minify-booleans@^6.9.0, babel-plugin-transform-minify-booleans@^6.9.2: + version "6.9.2" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-minify-booleans/-/babel-plugin-transform-minify-booleans-6.9.2.tgz#cf995be067a0303cb526549f03dcd9682419430d" babel-plugin-transform-object-assign@^6.5.0: version "6.22.0" @@ -2044,9 +2243,9 @@ babel-plugin-transform-object-rest-spread@6.26.0, babel-plugin-transform-object- babel-plugin-syntax-object-rest-spread "^6.8.0" babel-runtime "^6.26.0" -babel-plugin-transform-property-literals@^6.9.3: - version "6.9.3" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-property-literals/-/babel-plugin-transform-property-literals-6.9.3.tgz#9a8c813da862dd18f682f409efd0861170bbd611" +babel-plugin-transform-property-literals@^6.9.0, babel-plugin-transform-property-literals@^6.9.2: + version "6.9.2" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-property-literals/-/babel-plugin-transform-property-literals-6.9.2.tgz#a58d0996cf2adaf224f7ce848ad1cde4cd8cf275" dependencies: esutils "^2.0.2" @@ -2090,23 +2289,33 @@ babel-plugin-transform-regenerator@6.26.0, babel-plugin-transform-regenerator@^6 dependencies: regenerator-transform "^0.10.0" -babel-plugin-transform-regexp-constructors@^0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-regexp-constructors/-/babel-plugin-transform-regexp-constructors-0.4.2.tgz#455ee632ff70d0deecf34a1758cb74d3fb8b47f4" +babel-plugin-transform-regexp-constructors@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-regexp-constructors/-/babel-plugin-transform-regexp-constructors-0.3.0.tgz#9bb2c8dd082271a5cb1b3a441a7c52e8fd07e0f5" -babel-plugin-transform-remove-console@^6.9.3: - version "6.9.3" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-console/-/babel-plugin-transform-remove-console-6.9.3.tgz#b14d9f739022dc5cb4dad1b1ff09cc660e6dc7c3" +babel-plugin-transform-regexp-constructors@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-regexp-constructors/-/babel-plugin-transform-regexp-constructors-0.4.1.tgz#4ff7f1da0e0c31910d0e1461abed0c679cb31eee" -babel-plugin-transform-remove-debugger@^6.9.3: - version "6.9.3" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-debugger/-/babel-plugin-transform-remove-debugger-6.9.3.tgz#464f8beab3875e7016faf8d456fe7763c38377fd" +babel-plugin-transform-remove-console@^6.9.0, babel-plugin-transform-remove-console@^6.9.2: + version "6.9.2" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-console/-/babel-plugin-transform-remove-console-6.9.2.tgz#e8a0c27d56c9503ca16e284f6b64dbd4b95d21e9" -babel-plugin-transform-remove-undefined@^0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-undefined/-/babel-plugin-transform-remove-undefined-0.4.2.tgz#d7e038a08d60222773ca4e33c007946e3b06e865" +babel-plugin-transform-remove-debugger@^6.9.0, babel-plugin-transform-remove-debugger@^6.9.2: + version "6.9.2" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-debugger/-/babel-plugin-transform-remove-debugger-6.9.2.tgz#536c87bdb6200d1460c996dd95d179cf38c24ee1" + +babel-plugin-transform-remove-undefined@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-undefined/-/babel-plugin-transform-remove-undefined-0.3.0.tgz#03f5f0071867781e9beabbc7b77bf8095fd3f3ec" dependencies: - babel-helper-evaluate-path "^0.4.2" + babel-helper-evaluate-path "^0.3.0" + +babel-plugin-transform-remove-undefined@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-undefined/-/babel-plugin-transform-remove-undefined-0.4.1.tgz#636c7f28cebafc5a66fa34f94c608047eaf7e74f" + dependencies: + babel-helper-evaluate-path "^0.4.1" babel-plugin-transform-runtime@6.23.0, babel-plugin-transform-runtime@^6.23.0: version "6.23.0" @@ -2114,9 +2323,9 @@ babel-plugin-transform-runtime@6.23.0, babel-plugin-transform-runtime@^6.23.0: dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-simplify-comparison-operators@^6.9.3: - version "6.9.3" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-simplify-comparison-operators/-/babel-plugin-transform-simplify-comparison-operators-6.9.3.tgz#a264eb4efb6a4565b56686ba1aaf0deae8f50e2f" +babel-plugin-transform-simplify-comparison-operators@^6.9.0, babel-plugin-transform-simplify-comparison-operators@^6.9.2: + version "6.9.2" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-simplify-comparison-operators/-/babel-plugin-transform-simplify-comparison-operators-6.9.2.tgz#0c0e9afa732924f03aa982fd63c92d0408bd5656" babel-plugin-transform-strict-mode@^6.24.1: version "6.24.1" @@ -2125,9 +2334,9 @@ babel-plugin-transform-strict-mode@^6.24.1: babel-runtime "^6.22.0" babel-types "^6.24.1" -babel-plugin-transform-undefined-to-void@^6.9.3: - version "6.9.3" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-undefined-to-void/-/babel-plugin-transform-undefined-to-void-6.9.3.tgz#a2c4d6d8d987c5ce18e195ab58265cecf9b9ffbd" +babel-plugin-transform-undefined-to-void@^6.9.0, babel-plugin-transform-undefined-to-void@^6.9.2: + version "6.9.2" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-undefined-to-void/-/babel-plugin-transform-undefined-to-void-6.9.2.tgz#165fde73393276bea02a739658878dcced0b9ebb" babel-plugin-transform-vue-jsx@^3.5.0: version "3.5.0" @@ -2143,7 +2352,7 @@ babel-polyfill@^6.23.0, babel-polyfill@^6.26.0: core-js "^2.5.0" regenerator-runtime "^0.10.5" -babel-preset-env@1.6.1, babel-preset-env@^1.6.0: +babel-preset-env@1.6.1, babel-preset-env@^1.6.0, babel-preset-env@^1.6.1: version "1.6.1" resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" dependencies: @@ -2178,41 +2387,6 @@ babel-preset-env@1.6.1, babel-preset-env@^1.6.0: invariant "^2.2.2" semver "^5.3.0" -babel-preset-env@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.7.0.tgz#dea79fa4ebeb883cd35dab07e260c1c9c04df77a" - dependencies: - babel-plugin-check-es2015-constants "^6.22.0" - babel-plugin-syntax-trailing-function-commas "^6.22.0" - babel-plugin-transform-async-to-generator "^6.22.0" - babel-plugin-transform-es2015-arrow-functions "^6.22.0" - babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" - babel-plugin-transform-es2015-block-scoping "^6.23.0" - babel-plugin-transform-es2015-classes "^6.23.0" - babel-plugin-transform-es2015-computed-properties "^6.22.0" - babel-plugin-transform-es2015-destructuring "^6.23.0" - babel-plugin-transform-es2015-duplicate-keys "^6.22.0" - babel-plugin-transform-es2015-for-of "^6.23.0" - babel-plugin-transform-es2015-function-name "^6.22.0" - babel-plugin-transform-es2015-literals "^6.22.0" - babel-plugin-transform-es2015-modules-amd "^6.22.0" - babel-plugin-transform-es2015-modules-commonjs "^6.23.0" - babel-plugin-transform-es2015-modules-systemjs "^6.23.0" - babel-plugin-transform-es2015-modules-umd "^6.23.0" - babel-plugin-transform-es2015-object-super "^6.22.0" - babel-plugin-transform-es2015-parameters "^6.23.0" - babel-plugin-transform-es2015-shorthand-properties "^6.22.0" - babel-plugin-transform-es2015-spread "^6.22.0" - babel-plugin-transform-es2015-sticky-regex "^6.22.0" - babel-plugin-transform-es2015-template-literals "^6.22.0" - babel-plugin-transform-es2015-typeof-symbol "^6.23.0" - babel-plugin-transform-es2015-unicode-regex "^6.22.0" - babel-plugin-transform-exponentiation-operator "^6.22.0" - babel-plugin-transform-regenerator "^6.22.0" - browserslist "^3.2.6" - invariant "^2.2.2" - semver "^5.3.0" - babel-preset-es2015-node@^6.1.1: version "6.1.1" resolved "https://registry.yarnpkg.com/babel-preset-es2015-node/-/babel-preset-es2015-node-6.1.1.tgz#60b23157024b0cfebf3a63554cb05ee035b4e55f" @@ -2315,32 +2489,60 @@ babel-preset-jest@^22.4.3: babel-plugin-jest-hoist "^22.4.3" babel-plugin-syntax-object-rest-spread "^6.13.0" -babel-preset-minify@^0.4.2: - version "0.4.2" - resolved "https://registry.yarnpkg.com/babel-preset-minify/-/babel-preset-minify-0.4.2.tgz#fc541617fc18a2c66b6d31f40f3f0d7be68c3b25" +babel-preset-minify@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/babel-preset-minify/-/babel-preset-minify-0.3.0.tgz#7db64afa75f16f6e06c0aa5f25195f6f36784d77" dependencies: - babel-plugin-minify-builtins "^0.4.2" - babel-plugin-minify-constant-folding "^0.4.2" - babel-plugin-minify-dead-code-elimination "^0.4.2" - babel-plugin-minify-flip-comparisons "^0.4.2" - babel-plugin-minify-guarded-expressions "^0.4.2" - babel-plugin-minify-infinity "^0.4.2" - babel-plugin-minify-mangle-names "^0.4.2" - babel-plugin-minify-numeric-literals "^0.4.2" - babel-plugin-minify-replace "^0.4.2" - babel-plugin-minify-simplify "^0.4.2" - babel-plugin-minify-type-constructors "^0.4.2" - babel-plugin-transform-inline-consecutive-adds "^0.4.2" - babel-plugin-transform-member-expression-literals "^6.9.3" - babel-plugin-transform-merge-sibling-variables "^6.9.3" - babel-plugin-transform-minify-booleans "^6.9.3" - babel-plugin-transform-property-literals "^6.9.3" - babel-plugin-transform-regexp-constructors "^0.4.2" - babel-plugin-transform-remove-console "^6.9.3" - babel-plugin-transform-remove-debugger "^6.9.3" - babel-plugin-transform-remove-undefined "^0.4.2" - babel-plugin-transform-simplify-comparison-operators "^6.9.3" - babel-plugin-transform-undefined-to-void "^6.9.3" + babel-plugin-minify-builtins "^0.3.0" + babel-plugin-minify-constant-folding "^0.3.0" + babel-plugin-minify-dead-code-elimination "^0.3.0" + babel-plugin-minify-flip-comparisons "^0.3.0" + babel-plugin-minify-guarded-expressions "^0.3.0" + babel-plugin-minify-infinity "^0.3.0" + babel-plugin-minify-mangle-names "^0.3.0" + babel-plugin-minify-numeric-literals "^0.3.0" + babel-plugin-minify-replace "^0.3.0" + babel-plugin-minify-simplify "^0.3.0" + babel-plugin-minify-type-constructors "^0.3.0" + babel-plugin-transform-inline-consecutive-adds "^0.3.0" + babel-plugin-transform-member-expression-literals "^6.9.0" + babel-plugin-transform-merge-sibling-variables "^6.9.0" + babel-plugin-transform-minify-booleans "^6.9.0" + babel-plugin-transform-property-literals "^6.9.0" + babel-plugin-transform-regexp-constructors "^0.3.0" + babel-plugin-transform-remove-console "^6.9.0" + babel-plugin-transform-remove-debugger "^6.9.0" + babel-plugin-transform-remove-undefined "^0.3.0" + babel-plugin-transform-simplify-comparison-operators "^6.9.0" + babel-plugin-transform-undefined-to-void "^6.9.0" + lodash.isplainobject "^4.0.6" + +babel-preset-minify@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-preset-minify/-/babel-preset-minify-0.4.1.tgz#40e3edad743bb107dd63c7cfb21c604dccd83674" + dependencies: + babel-plugin-minify-builtins "^0.4.1" + babel-plugin-minify-constant-folding "^0.4.1" + babel-plugin-minify-dead-code-elimination "^0.4.1" + babel-plugin-minify-flip-comparisons "^0.4.1" + babel-plugin-minify-guarded-expressions "^0.4.1" + babel-plugin-minify-infinity "^0.4.1" + babel-plugin-minify-mangle-names "^0.4.1" + babel-plugin-minify-numeric-literals "^0.4.1" + babel-plugin-minify-replace "^0.4.1" + babel-plugin-minify-simplify "^0.4.1" + babel-plugin-minify-type-constructors "^0.4.1" + babel-plugin-transform-inline-consecutive-adds "^0.4.1" + babel-plugin-transform-member-expression-literals "^6.9.2" + babel-plugin-transform-merge-sibling-variables "^6.9.2" + babel-plugin-transform-minify-booleans "^6.9.2" + babel-plugin-transform-property-literals "^6.9.2" + babel-plugin-transform-regexp-constructors "^0.4.1" + babel-plugin-transform-remove-console "^6.9.2" + babel-plugin-transform-remove-debugger "^6.9.2" + babel-plugin-transform-remove-undefined "^0.4.1" + babel-plugin-transform-simplify-comparison-operators "^6.9.2" + babel-plugin-transform-undefined-to-void "^6.9.2" lodash.isplainobject "^4.0.6" babel-preset-react-app@^3.1.1: @@ -3027,13 +3229,6 @@ browserslist@^3.2.6: caniuse-lite "^1.0.30000830" electron-to-chromium "^1.3.42" -browserslist@^3.2.7: - version "3.2.7" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.7.tgz#aa488634d320b55e88bab0256184dbbcca1e6de9" - dependencies: - caniuse-lite "^1.0.30000835" - electron-to-chromium "^1.3.45" - bser@1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" @@ -3298,9 +3493,9 @@ caniuse-lite@^1.0.30000830: version "1.0.30000830" resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000830.tgz#cb96b8a2dd3cbfe04acea2af3c4e894249095328" -caniuse-lite@^1.0.30000835, caniuse-lite@^1.0.30000839: - version "1.0.30000840" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000840.tgz#344513f8f843536cf99694964c09811277eee395" +caniuse-lite@^1.0.30000832: + version "1.0.30000832" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000832.tgz#22a277f1d623774cc9aea2f7c1a65cb1603c63b8" capture-stack-trace@^1.0.0: version "1.0.0" @@ -3725,9 +3920,9 @@ code-point-at@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" -codecov@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/codecov/-/codecov-3.0.2.tgz#aea43843a5cd2fb6b7e488b2eff25d367ab70b12" +codecov@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/codecov/-/codecov-3.0.1.tgz#cc4c5cd1955c6be47f6dda2f8c55bcc43c732dca" dependencies: argv "0.0.2" request "^2.81.0" @@ -4485,9 +4680,9 @@ create-react-class@^15.5.2, create-react-class@^15.6.2: loose-envify "^1.3.1" object-assign "^4.1.1" -cross-env@^5.1.5: - version "5.1.5" - resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-5.1.5.tgz#31daf7f3a52ef337c8ddda585f08175cce5d1fa5" +cross-env@^5.1.4: + version "5.1.4" + resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-5.1.4.tgz#f61c14291f7cc653bb86457002ea80a04699d022" dependencies: cross-spawn "^5.1.0" is-windows "^1.0.0" @@ -4745,9 +4940,9 @@ damerau-levenshtein@^1.0.0: version "1.0.4" resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz#03191c432cb6eea168bb77f3a55ffdccb8978514" -danger@^3.6.6: - version "3.6.6" - resolved "https://registry.yarnpkg.com/danger/-/danger-3.6.6.tgz#683ecd1644f9444a15644d698c6ac4f6e1499c92" +danger@^3.6.5: + version "3.6.5" + resolved "https://registry.yarnpkg.com/danger/-/danger-3.6.5.tgz#e00fe1e88b2d82ab2a90ce7e0da5b9f15d1206d4" dependencies: "@octokit/rest" "^15.2.6" babel-polyfill "^6.23.0" @@ -4775,7 +4970,7 @@ danger@^3.6.6: require-from-string "^2.0.1" rfc6902 "^2.2.2" supports-hyperlinks "^1.0.1" - vm2 "^3.6.0" + vm2 patriksimek/vm2#custom_files voca "^1.4.0" dargs@^4.0.1: @@ -5327,10 +5522,6 @@ electron-to-chromium@^1.3.42: version "1.3.44" resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.44.tgz#ef6b150a60d523082388cadad88085ecd2fd4684" -electron-to-chromium@^1.3.45: - version "1.3.45" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.45.tgz#458ac1b1c5c760ce8811a16d2bfbd97ec30bafb8" - elegant-spinner@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" @@ -5841,9 +6032,9 @@ eslint-plugin-react@7.4.0: jsx-ast-utils "^2.0.0" prop-types "^15.5.10" -eslint-plugin-react@^7.8.2: - version "7.8.2" - resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.8.2.tgz#e95c9c47fece55d2303d1a67c9d01b930b88a51d" +eslint-plugin-react@^7.7.0: + version "7.7.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.7.0.tgz#f606c719dbd8a1a2b3d25c16299813878cca0160" dependencies: doctrine "^2.0.2" has "^1.0.1" @@ -7094,9 +7285,9 @@ glamor@^2.20.40: prop-types "^15.5.10" through "^2.3.8" -glamorous@^4.13.0: - version "4.13.0" - resolved "https://registry.yarnpkg.com/glamorous/-/glamorous-4.13.0.tgz#4ac5cb05633aa49a0396d409f665dd9b614f1b5a" +glamorous@^4.12.1, glamorous@^4.12.5: + version "4.12.5" + resolved "https://registry.yarnpkg.com/glamorous/-/glamorous-4.12.5.tgz#909e0ec2ab3136e4749bf82edd9f33b51745e41f" dependencies: brcast "^3.0.0" csstype "^2.2.0" @@ -7985,7 +8176,7 @@ https-proxy-agent@^2.1.0: agent-base "^4.1.0" debug "^3.1.0" -https-proxy-agent@^2.2.0, https-proxy-agent@^2.2.1: +https-proxy-agent@^2.2.0: version "2.2.1" resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz#51552970fa04d723e04c56d04178c3f92592bbc0" dependencies: @@ -11336,9 +11527,9 @@ mkdirp@0.5.1, mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdi dependencies: minimist "0.0.8" -mock-fs@^4.5.0: - version "4.5.0" - resolved "https://registry.yarnpkg.com/mock-fs/-/mock-fs-4.5.0.tgz#75245b966f7e3defe197b03454af9c5b355594b7" +mock-fs@^4.3.0: + version "4.4.2" + resolved "https://registry.yarnpkg.com/mock-fs/-/mock-fs-4.4.2.tgz#09dec5313f97095a450be6aa2ad8ab6738d63d6b" modify-values@^1.0.0: version "1.0.0" @@ -13203,9 +13394,9 @@ protoduck@^4.0.0: dependencies: genfun "^4.0.1" -protractor@~5.3.2: - version "5.3.2" - resolved "https://registry.yarnpkg.com/protractor/-/protractor-5.3.2.tgz#b8278f3131d9d52fa1172ed0f7fec03085fbe0ce" +protractor@~5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/protractor/-/protractor-5.3.1.tgz#b8b8ac4ad2278bb7a461b99a34d79532095f14b8" dependencies: "@types/node" "^6.0.46" "@types/q" "^0.0.32" @@ -13217,7 +13408,7 @@ protractor@~5.3.2: jasminewd2 "^2.1.0" optimist "~0.6.0" q "1.4.1" - saucelabs "^1.5.0" + saucelabs "~1.3.0" selenium-webdriver "3.6.0" source-map-support "~0.4.0" webdriver-js-extender "^1.0.0" @@ -13311,14 +13502,14 @@ punycode@~1.2.3: version "1.2.4" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.2.4.tgz#54008ac972aec74175def9cba6df7fa9d3918740" -puppeteer@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-1.4.0.tgz#437f0f3450d76e437185c0bf06f446e80f184692" +puppeteer@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-1.3.0.tgz#f571c5f27153ca164a8188e6328ce2e4946878f3" dependencies: - debug "^3.1.0" + debug "^2.6.8" extract-zip "^1.6.5" https-proxy-agent "^2.1.0" - mime "^2.0.3" + mime "^1.3.4" progress "^2.0.0" proxy-from-env "^1.0.0" rimraf "^2.6.1" @@ -13711,14 +13902,10 @@ react-is@^16.3.2: version "16.3.2" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.3.2.tgz#f4d3d0e2f5fbb6ac46450641eb2e25bf05d36b22" -react-lifecycles-compat@^3.0.0: +react-lifecycles-compat@^3.0.0, react-lifecycles-compat@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.2.tgz#7279047275bd727a912e25f734c0559527e84eff" -react-lifecycles-compat@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" - react-modal@^3.4.4: version "3.4.4" resolved "https://registry.yarnpkg.com/react-modal/-/react-modal-3.4.4.tgz#e9dde25e9e85a59c76831f2a2b468712a546aded" @@ -13734,9 +13921,9 @@ react-native-compat@^1.0.0: dependencies: prop-types "^15.5.10" -react-native-iphone-x-helper@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.0.3.tgz#7a2f1e0574e899a0f1d426e6167fd98990083214" +react-native-iphone-x-helper@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.0.2.tgz#7dbca530930f7c1ce8633cc8fd13ba94102992e1" react-native@^0.52.2: version "0.52.2" @@ -15020,11 +15207,11 @@ sass-loader@^7.0.1: neo-async "^2.5.0" pify "^3.0.0" -saucelabs@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/saucelabs/-/saucelabs-1.5.0.tgz#9405a73c360d449b232839919a86c396d379fd9d" +saucelabs@~1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/saucelabs/-/saucelabs-1.3.0.tgz#d240e8009df7fa87306ec4578a69ba3b5c424fee" dependencies: - https-proxy-agent "^2.2.1" + https-proxy-agent "^1.0.0" sax@0.5.x: version "0.5.8" @@ -15435,9 +15622,9 @@ shelljs@0.3.x: version "0.3.0" resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.3.0.tgz#3596e6307a781544f591f37da618360f31db57b1" -shelljs@^0.8.2: - version "0.8.2" - resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.2.tgz#345b7df7763f4c2340d584abb532c5f752ca9e35" +shelljs@^0.8.1: + version "0.8.1" + resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.1.tgz#729e038c413a2254c4078b95ed46e0397154a9f1" dependencies: glob "^7.0.0" interpret "^1.0.0" @@ -16637,9 +16824,9 @@ ts-jest@^22.4.1: pkg-dir "^2.0.0" yargs "^11.0.0" -ts-loader@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-4.3.0.tgz#4e3ba172783d1256d3a23bdfadde011a795fae9e" +ts-loader@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-4.2.0.tgz#c380c399fc81f82cad0e3044f9c1f775ecde6efa" dependencies: chalk "^2.3.0" enhanced-resolve "^4.0.0" @@ -17388,9 +17575,9 @@ vm-browserify@0.0.4, vm-browserify@~0.0.1: dependencies: indexof "0.0.1" -vm2@^3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/vm2/-/vm2-3.6.0.tgz#a6e6370c57e6edd77decfb7b1ad64fc87dbf2d4e" +vm2@patriksimek/vm2#custom_files: + version "3.5.0" + resolved "https://codeload.github.com/patriksimek/vm2/tar.gz/7e82f90ac705fc44fad044147cb0df09b4c79a57" voca@^1.4.0: version "1.4.0" @@ -17510,14 +17697,24 @@ wcwidth@^1.0.0: dependencies: defaults "^1.0.3" -webassemblyjs@1.4.3: - version "1.4.3" - resolved "https://registry.yarnpkg.com/webassemblyjs/-/webassemblyjs-1.4.3.tgz#0591893efb8fbde74498251cbe4b2d83df9239cb" +webassemblyjs@1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/webassemblyjs/-/webassemblyjs-1.3.0.tgz#970ca465d5ee45ebe611c5c6f7d461900c3e10b2" dependencies: - "@webassemblyjs/ast" "1.4.3" - "@webassemblyjs/validation" "1.4.3" - "@webassemblyjs/wasm-parser" "1.4.3" - "@webassemblyjs/wast-parser" "1.4.3" + "@webassemblyjs/ast" "1.3.0" + "@webassemblyjs/validation" "1.3.0" + "@webassemblyjs/wasm-parser" "1.3.0" + "@webassemblyjs/wast-parser" "1.3.0" + long "^3.2.0" + +webassemblyjs@1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/webassemblyjs/-/webassemblyjs-1.3.1.tgz#2bb8ebc724d0fe09b9562ab20e32ce3f5bac5c74" + dependencies: + "@webassemblyjs/ast" "1.3.1" + "@webassemblyjs/validation" "1.3.1" + "@webassemblyjs/wasm-parser" "1.3.1" + "@webassemblyjs/wast-parser" "1.3.1" long "^3.2.0" webdriver-js-extender@^1.0.0: @@ -17677,9 +17874,9 @@ webpack-dev-server@~2.11.0: webpack-dev-middleware "1.12.2" yargs "6.6.0" -webpack-hot-middleware@^2.22.2: - version "2.22.2" - resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.22.2.tgz#623b77ce591fcd4e1fb99f18167781443e50afac" +webpack-hot-middleware@^2.21.2, webpack-hot-middleware@^2.22.1: + version "2.22.1" + resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.22.1.tgz#2ff865bfebc8e9937bd1619f0f48d6ab601bfea0" dependencies: ansi-html "0.0.7" html-entities "^1.2.0" @@ -17748,13 +17945,40 @@ webpack@3.8.1: webpack-sources "^1.0.1" yargs "^8.0.2" -webpack@^4.8.3: - version "4.8.3" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.8.3.tgz#957c8e80000f9e5cc03d775e78b472d8954f4eeb" +webpack@^4.5.0, webpack@^4.6.0: + version "4.8.1" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.8.1.tgz#59e38f99f2751c931dd09a035aba7bec4b5f916e" dependencies: - "@webassemblyjs/ast" "1.4.3" - "@webassemblyjs/wasm-edit" "1.4.3" - "@webassemblyjs/wasm-parser" "1.4.3" + "@webassemblyjs/ast" "1.3.1" + "@webassemblyjs/wasm-edit" "1.3.1" + "@webassemblyjs/wasm-parser" "1.3.1" + acorn "^5.0.0" + acorn-dynamic-import "^3.0.0" + ajv "^6.1.0" + ajv-keywords "^3.1.0" + chrome-trace-event "^0.1.1" + enhanced-resolve "^4.0.0" + eslint-scope "^3.7.1" + loader-runner "^2.3.0" + loader-utils "^1.1.0" + memory-fs "~0.4.1" + micromatch "^3.1.8" + mkdirp "~0.5.0" + neo-async "^2.5.0" + node-libs-browser "^2.0.0" + schema-utils "^0.4.4" + tapable "^1.0.0" + uglifyjs-webpack-plugin "^1.2.4" + watchpack "^1.5.0" + webpack-sources "^1.0.1" + +webpack@^4.8.0: + version "4.8.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.8.0.tgz#4faef32daf17db89be76b1cb90434508aeec8d3a" + dependencies: + "@webassemblyjs/ast" "1.3.0" + "@webassemblyjs/wasm-edit" "1.3.0" + "@webassemblyjs/wasm-parser" "1.3.0" acorn "^5.0.0" acorn-dynamic-import "^3.0.0" ajv "^6.1.0" From 7d831416a3632ee0373b27601c9bed97f74e163d Mon Sep 17 00:00:00 2001 From: Hypnosphi Date: Fri, 18 May 2018 03:11:38 +0300 Subject: [PATCH 143/143] Fix lint --- .../src/components/LifecycleLogger.js | 7 +- yarn.lock | 888 +++++++++--------- 2 files changed, 450 insertions(+), 445 deletions(-) diff --git a/examples/cra-kitchen-sink/src/components/LifecycleLogger.js b/examples/cra-kitchen-sink/src/components/LifecycleLogger.js index df55b2a6a4d..f3343012cac 100644 --- a/examples/cra-kitchen-sink/src/components/LifecycleLogger.js +++ b/examples/cra-kitchen-sink/src/components/LifecycleLogger.js @@ -17,19 +17,18 @@ class LifecycleLogger extends Component { componentDidMount() { log('componentDidMount'); } - // eslint-disable-next-line react/sort-comp getSnapshotBeforeUpdate() { log('getSnapshotBeforeUpdate'); } componentDidUpdate() { log('componentDidUpdate'); } - componentWillUnmount() { - log('componentWillUnmount'); - } componentDidCatch() { log('componentDidCatch'); } + componentWillUnmount() { + log('componentWillUnmount'); + } render() { log('render'); return
Lifecycle methods are logged to the console
; diff --git a/yarn.lock b/yarn.lock index ae9a5c50905..5d707fa15bc 100644 --- a/yarn.lock +++ b/yarn.lock @@ -267,9 +267,9 @@ tree-kill "^1.0.0" webpack-sources "^1.1.0" -"@octokit/rest@^15.2.6": - version "15.2.6" - resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-15.2.6.tgz#16226f58fbf0ba88f631848fb622dfe0ad410c0c" +"@octokit/rest@^15.5.0": + version "15.6.0" + resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-15.6.0.tgz#2d4a9f9efd38513b606f3192d91bac216c1c6d94" dependencies: before-after-hook "^1.1.0" btoa-lite "^1.0.0" @@ -417,9 +417,9 @@ version "6.0.96" resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.96.tgz#7bf0bf40d6ce51e93762cc47d010c8cc5ebb2179" -"@types/node@~9.6.12": - version "9.6.12" - resolved "https://registry.yarnpkg.com/@types/node/-/node-9.6.12.tgz#ab2d716505858ebc8ee94b347b5c9d311eb81b72" +"@types/node@~9.6.15": + version "9.6.17" + resolved "https://registry.yarnpkg.com/@types/node/-/node-9.6.17.tgz#00a225d8240c953c71e7a7336e153cd69ff704b6" "@types/parse5@^2.2.32": version "2.2.34" @@ -435,226 +435,120 @@ version "2.53.43" resolved "https://registry.yarnpkg.com/@types/selenium-webdriver/-/selenium-webdriver-2.53.43.tgz#2de3d718819bc20165754c4a59afb7e9833f6707" -"@webassemblyjs/ast@1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.3.0.tgz#524246cd578c30ff792d0c7b49bb0a0f89191dd2" +"@webassemblyjs/ast@1.4.3": + version "1.4.3" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.4.3.tgz#3b3f6fced944d8660273347533e6d4d315b5934a" dependencies: - "@webassemblyjs/helper-wasm-bytecode" "1.3.0" - "@webassemblyjs/wast-parser" "1.3.0" - webassemblyjs "1.3.0" + "@webassemblyjs/helper-wasm-bytecode" "1.4.3" + "@webassemblyjs/wast-parser" "1.4.3" + debug "^3.1.0" + webassemblyjs "1.4.3" -"@webassemblyjs/ast@1.3.1": - version "1.3.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.3.1.tgz#3081b4b3ff0af733aa5ba573af998f33711293f8" +"@webassemblyjs/floating-point-hex-parser@1.4.3": + version "1.4.3" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.4.3.tgz#f5aee4c376a717c74264d7bacada981e7e44faad" + +"@webassemblyjs/helper-buffer@1.4.3": + version "1.4.3" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.4.3.tgz#0434b55958519bf503697d3824857b1dea80b729" dependencies: - "@webassemblyjs/helper-wasm-bytecode" "1.3.1" - "@webassemblyjs/wast-parser" "1.3.1" - webassemblyjs "1.3.1" + debug "^3.1.0" -"@webassemblyjs/floating-point-hex-parser@1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.3.0.tgz#a32574e1327a946c78711179fda8bcc808285913" - -"@webassemblyjs/floating-point-hex-parser@1.3.1": - version "1.3.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.3.1.tgz#82646903ba25c3e5d88dec41ecb4e4d770615bfc" - -"@webassemblyjs/helper-buffer@1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.3.0.tgz#790599218673099863b6f5f84d36cc8caab861b2" - -"@webassemblyjs/helper-buffer@1.3.1": - version "1.3.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.3.1.tgz#aa66bb6c274a7e5610d7468f94a2702186713bc6" - -"@webassemblyjs/helper-code-frame@1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.3.0.tgz#8f7d4cd9a2aed3c633cdd79aa660e96279a349bf" +"@webassemblyjs/helper-code-frame@1.4.3": + version "1.4.3" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.4.3.tgz#f1349ca3e01a8e29ee2098c770773ef97af43641" dependencies: - "@webassemblyjs/wast-printer" "1.3.0" + "@webassemblyjs/wast-printer" "1.4.3" -"@webassemblyjs/helper-code-frame@1.3.1": - version "1.3.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.3.1.tgz#b5eba87cf37992e8a62c402545aed87dfd02be83" +"@webassemblyjs/helper-fsm@1.4.3": + version "1.4.3" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.4.3.tgz#65a921db48fb43e868f17b27497870bdcae22b79" + +"@webassemblyjs/helper-wasm-bytecode@1.4.3": + version "1.4.3" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.4.3.tgz#0e5b4b5418e33f8a26e940b7809862828c3721a5" + +"@webassemblyjs/helper-wasm-section@1.4.3": + version "1.4.3" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.4.3.tgz#9ceedd53a3f152c3412e072887ade668d0b1acbf" dependencies: - "@webassemblyjs/wast-printer" "1.3.1" + "@webassemblyjs/ast" "1.4.3" + "@webassemblyjs/helper-buffer" "1.4.3" + "@webassemblyjs/helper-wasm-bytecode" "1.4.3" + "@webassemblyjs/wasm-gen" "1.4.3" + debug "^3.1.0" -"@webassemblyjs/helper-fsm@1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.3.0.tgz#515141ec51c47b892def606dfc706e7708d4398a" - -"@webassemblyjs/helper-fsm@1.3.1": - version "1.3.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.3.1.tgz#297113d09a9541613eaeb265d7f948c5e03eb0a2" - -"@webassemblyjs/helper-wasm-bytecode@1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.3.0.tgz#d23d55fcef04e4f24d6728e31bda8f1257293f91" - -"@webassemblyjs/helper-wasm-bytecode@1.3.1": - version "1.3.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.3.1.tgz#53b0308988e3a0cad836c83fc0801255906608f8" - -"@webassemblyjs/helper-wasm-section@1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.3.0.tgz#a8c9435faca44734fc67dfaee4911ac8e6627bd7" - dependencies: - "@webassemblyjs/ast" "1.3.0" - "@webassemblyjs/helper-buffer" "1.3.0" - "@webassemblyjs/helper-wasm-bytecode" "1.3.0" - "@webassemblyjs/wasm-gen" "1.3.0" - -"@webassemblyjs/helper-wasm-section@1.3.1": - version "1.3.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.3.1.tgz#3df13898e89a376ffb89439d216d9f0001bf9632" - dependencies: - "@webassemblyjs/ast" "1.3.1" - "@webassemblyjs/helper-buffer" "1.3.1" - "@webassemblyjs/helper-wasm-bytecode" "1.3.1" - "@webassemblyjs/wasm-gen" "1.3.1" - -"@webassemblyjs/leb128@1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.3.0.tgz#b9995160f0f94d785579a149716bb2cb0d102f08" +"@webassemblyjs/leb128@1.4.3": + version "1.4.3" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.4.3.tgz#5a5e5949dbb5adfe3ae95664d0439927ac557fb8" dependencies: leb "^0.3.0" -"@webassemblyjs/leb128@1.3.1": - version "1.3.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.3.1.tgz#e0cf1c585c72955637eeeabab1e2ab37c12c2338" +"@webassemblyjs/validation@1.4.3": + version "1.4.3" + resolved "https://registry.yarnpkg.com/@webassemblyjs/validation/-/validation-1.4.3.tgz#9e66c9b3079d7bbcf2070c1bf52a54af2a09aac9" dependencies: - leb "^0.3.0" + "@webassemblyjs/ast" "1.4.3" -"@webassemblyjs/validation@1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/validation/-/validation-1.3.0.tgz#0a1261f414607a04e2ffebb1b3ea9777b35c97af" +"@webassemblyjs/wasm-edit@1.4.3": + version "1.4.3" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.4.3.tgz#87febd565e0ffb5ae25f6495bb3958d17aa0a779" dependencies: - "@webassemblyjs/ast" "1.3.0" - -"@webassemblyjs/validation@1.3.1": - version "1.3.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/validation/-/validation-1.3.1.tgz#ed0129d7ccca7858a3f46e7e47a6889008547a39" - dependencies: - "@webassemblyjs/ast" "1.3.1" - -"@webassemblyjs/wasm-edit@1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.3.0.tgz#48551c391aebb07e82634cd4ecf257456208a0d3" - dependencies: - "@webassemblyjs/ast" "1.3.0" - "@webassemblyjs/helper-buffer" "1.3.0" - "@webassemblyjs/helper-wasm-bytecode" "1.3.0" - "@webassemblyjs/helper-wasm-section" "1.3.0" - "@webassemblyjs/wasm-gen" "1.3.0" - "@webassemblyjs/wasm-opt" "1.3.0" - "@webassemblyjs/wasm-parser" "1.3.0" - "@webassemblyjs/wast-printer" "1.3.0" + "@webassemblyjs/ast" "1.4.3" + "@webassemblyjs/helper-buffer" "1.4.3" + "@webassemblyjs/helper-wasm-bytecode" "1.4.3" + "@webassemblyjs/helper-wasm-section" "1.4.3" + "@webassemblyjs/wasm-gen" "1.4.3" + "@webassemblyjs/wasm-opt" "1.4.3" + "@webassemblyjs/wasm-parser" "1.4.3" + "@webassemblyjs/wast-printer" "1.4.3" debug "^3.1.0" -"@webassemblyjs/wasm-edit@1.3.1": - version "1.3.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.3.1.tgz#a16ca4d9a12144b1b28d4e66ad1ad66ec65e479e" +"@webassemblyjs/wasm-gen@1.4.3": + version "1.4.3" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.4.3.tgz#8553164d0154a6be8f74d653d7ab355f73240aa4" dependencies: - "@webassemblyjs/ast" "1.3.1" - "@webassemblyjs/helper-buffer" "1.3.1" - "@webassemblyjs/helper-wasm-bytecode" "1.3.1" - "@webassemblyjs/helper-wasm-section" "1.3.1" - "@webassemblyjs/wasm-gen" "1.3.1" - "@webassemblyjs/wasm-opt" "1.3.1" - "@webassemblyjs/wasm-parser" "1.3.1" - "@webassemblyjs/wast-printer" "1.3.1" + "@webassemblyjs/ast" "1.4.3" + "@webassemblyjs/helper-wasm-bytecode" "1.4.3" + "@webassemblyjs/leb128" "1.4.3" + +"@webassemblyjs/wasm-opt@1.4.3": + version "1.4.3" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.4.3.tgz#26c7a23bfb136aa405b1d3410e63408ec60894b8" + dependencies: + "@webassemblyjs/ast" "1.4.3" + "@webassemblyjs/helper-buffer" "1.4.3" + "@webassemblyjs/wasm-gen" "1.4.3" + "@webassemblyjs/wasm-parser" "1.4.3" debug "^3.1.0" -"@webassemblyjs/wasm-gen@1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.3.0.tgz#acf45b38159f351178aa14135e5efa4172931e9a" +"@webassemblyjs/wasm-parser@1.4.3": + version "1.4.3" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.4.3.tgz#7ddd3e408f8542647ed612019cfb780830993698" dependencies: - "@webassemblyjs/ast" "1.3.0" - "@webassemblyjs/helper-wasm-bytecode" "1.3.0" - "@webassemblyjs/leb128" "1.3.0" + "@webassemblyjs/ast" "1.4.3" + "@webassemblyjs/helper-wasm-bytecode" "1.4.3" + "@webassemblyjs/leb128" "1.4.3" + "@webassemblyjs/wasm-parser" "1.4.3" + webassemblyjs "1.4.3" -"@webassemblyjs/wasm-gen@1.3.1": - version "1.3.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.3.1.tgz#43263fc56a0570e0564e407bbcd4c02e85167398" +"@webassemblyjs/wast-parser@1.4.3": + version "1.4.3" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.4.3.tgz#3250402e2c5ed53dbe2233c9de1fe1f9f0d51745" dependencies: - "@webassemblyjs/ast" "1.3.1" - "@webassemblyjs/helper-wasm-bytecode" "1.3.1" - "@webassemblyjs/leb128" "1.3.1" - -"@webassemblyjs/wasm-opt@1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.3.0.tgz#958150b0d631eb407fc9b85b9a852526c849c015" - dependencies: - "@webassemblyjs/ast" "1.3.0" - "@webassemblyjs/helper-buffer" "1.3.0" - "@webassemblyjs/wasm-gen" "1.3.0" - "@webassemblyjs/wasm-parser" "1.3.0" - -"@webassemblyjs/wasm-opt@1.3.1": - version "1.3.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.3.1.tgz#172601dcdaaacd6b0b002df1252033198c65eceb" - dependencies: - "@webassemblyjs/ast" "1.3.1" - "@webassemblyjs/helper-buffer" "1.3.1" - "@webassemblyjs/wasm-gen" "1.3.1" - "@webassemblyjs/wasm-parser" "1.3.1" - -"@webassemblyjs/wasm-parser@1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.3.0.tgz#66dd5ac632e0f938b1656bd46f01fe5f5f9488d0" - dependencies: - "@webassemblyjs/ast" "1.3.0" - "@webassemblyjs/helper-wasm-bytecode" "1.3.0" - "@webassemblyjs/leb128" "1.3.0" - "@webassemblyjs/wasm-parser" "1.3.0" - webassemblyjs "1.3.0" - -"@webassemblyjs/wasm-parser@1.3.1": - version "1.3.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.3.1.tgz#76727be6c313a9b775170ed38a126558eed7e8ef" - dependencies: - "@webassemblyjs/ast" "1.3.1" - "@webassemblyjs/helper-wasm-bytecode" "1.3.1" - "@webassemblyjs/leb128" "1.3.1" - "@webassemblyjs/wasm-parser" "1.3.1" - webassemblyjs "1.3.1" - -"@webassemblyjs/wast-parser@1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.3.0.tgz#bfc692d8a159d5fde7c1fee0f4e6d848d5bbcb71" - dependencies: - "@webassemblyjs/ast" "1.3.0" - "@webassemblyjs/floating-point-hex-parser" "1.3.0" - "@webassemblyjs/helper-code-frame" "1.3.0" - "@webassemblyjs/helper-fsm" "1.3.0" + "@webassemblyjs/ast" "1.4.3" + "@webassemblyjs/floating-point-hex-parser" "1.4.3" + "@webassemblyjs/helper-code-frame" "1.4.3" + "@webassemblyjs/helper-fsm" "1.4.3" long "^3.2.0" - webassemblyjs "1.3.0" + webassemblyjs "1.4.3" -"@webassemblyjs/wast-parser@1.3.1": - version "1.3.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.3.1.tgz#62b6eba09580477868dd394cee3e3f5c64e1f3f8" +"@webassemblyjs/wast-printer@1.4.3": + version "1.4.3" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.4.3.tgz#3d59aa8d0252d6814a3ef4e6d2a34c9ded3904e0" dependencies: - "@webassemblyjs/ast" "1.3.1" - "@webassemblyjs/floating-point-hex-parser" "1.3.1" - "@webassemblyjs/helper-code-frame" "1.3.1" - "@webassemblyjs/helper-fsm" "1.3.1" - long "^3.2.0" - webassemblyjs "1.3.1" - -"@webassemblyjs/wast-printer@1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.3.0.tgz#b4ed84f0fea9f222d540e25b262cd5eabfee84d4" - dependencies: - "@webassemblyjs/ast" "1.3.0" - "@webassemblyjs/wast-parser" "1.3.0" - long "^3.2.0" - -"@webassemblyjs/wast-printer@1.3.1": - version "1.3.1" - resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.3.1.tgz#3e75b889e6f1ba2dfa854e4436b4287e7687e82c" - dependencies: - "@webassemblyjs/ast" "1.3.1" - "@webassemblyjs/wast-parser" "1.3.1" + "@webassemblyjs/ast" "1.4.3" + "@webassemblyjs/wast-parser" "1.4.3" long "^3.2.0" "@webcomponents/webcomponentsjs@^1.2.0": @@ -1311,12 +1205,12 @@ autoprefixer@^7.2.3: postcss "^6.0.16" postcss-value-parser "^3.2.3" -autoprefixer@^8.4.1: - version "8.4.1" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-8.4.1.tgz#c6b30001ea4b3daa6b611e50071f62dd24beb564" +autoprefixer@^8.5.0: + version "8.5.0" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-8.5.0.tgz#89a39b1316fbe7bc2b4997a0c7dad0149d99511c" dependencies: - browserslist "^3.2.6" - caniuse-lite "^1.0.30000832" + browserslist "^3.2.7" + caniuse-lite "^1.0.30000839" normalize-range "^0.1.2" num2fraction "^1.2.2" postcss "^6.0.22" @@ -1496,14 +1390,14 @@ babel-helper-define-map@^6.24.1: babel-types "^6.26.0" lodash "^4.17.4" -babel-helper-evaluate-path@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-helper-evaluate-path/-/babel-helper-evaluate-path-0.3.0.tgz#2439545e0b6eae5b7f49b790acbebd6b9a73df20" - babel-helper-evaluate-path@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/babel-helper-evaluate-path/-/babel-helper-evaluate-path-0.4.1.tgz#6b75c1e0e30f16629f2a8645ca305e1a8d3589a6" +babel-helper-evaluate-path@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/babel-helper-evaluate-path/-/babel-helper-evaluate-path-0.4.3.tgz#0a89af702c06b217027fa371908dd4989d3e633f" + babel-helper-explode-assignable-expression@^6.24.1: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" @@ -1521,14 +1415,14 @@ babel-helper-explode-class@^6.24.1: babel-traverse "^6.24.1" babel-types "^6.24.1" -babel-helper-flip-expressions@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-helper-flip-expressions/-/babel-helper-flip-expressions-0.3.0.tgz#f5b6394bd5219b43cf8f7b201535ed540c6e7fa2" - babel-helper-flip-expressions@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/babel-helper-flip-expressions/-/babel-helper-flip-expressions-0.4.1.tgz#cc03d80458c103b9f505c1c6a67fbe0f59cac320" +babel-helper-flip-expressions@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/babel-helper-flip-expressions/-/babel-helper-flip-expressions-0.4.3.tgz#3696736a128ac18bc25254b5f40a22ceb3c1d3fd" + babel-helper-function-name@^6.24.1: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" @@ -1557,22 +1451,22 @@ babel-helper-is-nodes-equiv@^0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/babel-helper-is-nodes-equiv/-/babel-helper-is-nodes-equiv-0.0.1.tgz#34e9b300b1479ddd98ec77ea0bbe9342dfe39684" -babel-helper-is-void-0@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-helper-is-void-0/-/babel-helper-is-void-0-0.3.0.tgz#95570d20bd27b2206f68083ae9980ee7003d8fe7" - babel-helper-is-void-0@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/babel-helper-is-void-0/-/babel-helper-is-void-0-0.4.1.tgz#a20bb5dbba1c30c4aafe73eb327d2d18b284ed1a" -babel-helper-mark-eval-scopes@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-helper-mark-eval-scopes/-/babel-helper-mark-eval-scopes-0.3.0.tgz#b4731314fdd7a89091271a5213b4e12d236e29e8" +babel-helper-is-void-0@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/babel-helper-is-void-0/-/babel-helper-is-void-0-0.4.3.tgz#7d9c01b4561e7b95dbda0f6eee48f5b60e67313e" babel-helper-mark-eval-scopes@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/babel-helper-mark-eval-scopes/-/babel-helper-mark-eval-scopes-0.4.1.tgz#03f9cc98defa4747e7412e700f4ebd0fed64b571" +babel-helper-mark-eval-scopes@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/babel-helper-mark-eval-scopes/-/babel-helper-mark-eval-scopes-0.4.3.tgz#d244a3bef9844872603ffb46e22ce8acdf551562" + babel-helper-optimise-call-expression@^6.24.1: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" @@ -1598,14 +1492,14 @@ babel-helper-remap-async-to-generator@^6.16.0, babel-helper-remap-async-to-gener babel-traverse "^6.24.1" babel-types "^6.24.1" -babel-helper-remove-or-void@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-helper-remove-or-void/-/babel-helper-remove-or-void-0.3.0.tgz#f43c86147c8fcc395a9528cbb31e7ff49d7e16e3" - babel-helper-remove-or-void@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/babel-helper-remove-or-void/-/babel-helper-remove-or-void-0.4.1.tgz#add5b0881785395112a70f0f1c259179b152426a" +babel-helper-remove-or-void@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/babel-helper-remove-or-void/-/babel-helper-remove-or-void-0.4.3.tgz#a4f03b40077a0ffe88e45d07010dee241ff5ae60" + babel-helper-replace-supers@^6.24.1: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" @@ -1617,14 +1511,14 @@ babel-helper-replace-supers@^6.24.1: babel-traverse "^6.24.1" babel-types "^6.24.1" -babel-helper-to-multiple-sequence-expressions@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-helper-to-multiple-sequence-expressions/-/babel-helper-to-multiple-sequence-expressions-0.3.0.tgz#8da2275ccc26995566118f7213abfd9af7214427" - babel-helper-to-multiple-sequence-expressions@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/babel-helper-to-multiple-sequence-expressions/-/babel-helper-to-multiple-sequence-expressions-0.4.1.tgz#154ecc38118f5c1c9b0e9fc235ddb5392149bc8f" +babel-helper-to-multiple-sequence-expressions@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/babel-helper-to-multiple-sequence-expressions/-/babel-helper-to-multiple-sequence-expressions-0.4.3.tgz#5b518b1127f47b3038773386a1561a2b48e632b6" + babel-helper-vue-jsx-merge-props@^2.0.2: version "2.0.3" resolved "https://registry.yarnpkg.com/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-2.0.3.tgz#22aebd3b33902328e513293a8e4992b384f9f1b6" @@ -1737,29 +1631,23 @@ babel-plugin-macros@^2.0.0: dependencies: cosmiconfig "^4.0.0" -babel-plugin-macros@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.2.0.tgz#31fc16748d6480697a517f692dc4421cb7bff0cc" +babel-plugin-macros@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.2.1.tgz#7cc0f84735aa86f776b51860793a98928f43a7fa" dependencies: cosmiconfig "^4.0.0" -babel-plugin-minify-builtins@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-builtins/-/babel-plugin-minify-builtins-0.3.0.tgz#4740117a6a784063aaf8f092989cf9e4bd484860" - dependencies: - babel-helper-evaluate-path "^0.3.0" - babel-plugin-minify-builtins@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/babel-plugin-minify-builtins/-/babel-plugin-minify-builtins-0.4.1.tgz#77a88cb7610ed925b1b0254a990240291e0b0be0" dependencies: babel-helper-evaluate-path "^0.4.1" -babel-plugin-minify-constant-folding@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-constant-folding/-/babel-plugin-minify-constant-folding-0.3.0.tgz#687e40336bd4ddd921e0e197f0006235ac184bb9" +babel-plugin-minify-builtins@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-builtins/-/babel-plugin-minify-builtins-0.4.3.tgz#9ea3d59f4ac4a7bb958d712d29556a1f86f7f81e" dependencies: - babel-helper-evaluate-path "^0.3.0" + babel-helper-evaluate-path "^0.4.3" babel-plugin-minify-constant-folding@^0.4.1: version "0.4.1" @@ -1767,14 +1655,11 @@ babel-plugin-minify-constant-folding@^0.4.1: dependencies: babel-helper-evaluate-path "^0.4.1" -babel-plugin-minify-dead-code-elimination@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-dead-code-elimination/-/babel-plugin-minify-dead-code-elimination-0.3.0.tgz#a323f686c404b824186ba5583cf7996cac81719e" +babel-plugin-minify-constant-folding@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-constant-folding/-/babel-plugin-minify-constant-folding-0.4.3.tgz#300f9de8dda0844a176b193653960e24ad33e191" dependencies: - babel-helper-evaluate-path "^0.3.0" - babel-helper-mark-eval-scopes "^0.3.0" - babel-helper-remove-or-void "^0.3.0" - lodash.some "^4.6.0" + babel-helper-evaluate-path "^0.4.3" babel-plugin-minify-dead-code-elimination@^0.4.1: version "0.4.1" @@ -1785,11 +1670,14 @@ babel-plugin-minify-dead-code-elimination@^0.4.1: babel-helper-remove-or-void "^0.4.1" lodash.some "^4.6.0" -babel-plugin-minify-flip-comparisons@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-flip-comparisons/-/babel-plugin-minify-flip-comparisons-0.3.0.tgz#6627893a409c9f30ef7f2c89e0c6eea7ee97ddc4" +babel-plugin-minify-dead-code-elimination@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-dead-code-elimination/-/babel-plugin-minify-dead-code-elimination-0.4.3.tgz#73628265864f9008d0027506f58abeb3c1d02d98" dependencies: - babel-helper-is-void-0 "^0.3.0" + babel-helper-evaluate-path "^0.4.3" + babel-helper-mark-eval-scopes "^0.4.3" + babel-helper-remove-or-void "^0.4.3" + lodash.some "^4.6.0" babel-plugin-minify-flip-comparisons@^0.4.1: version "0.4.1" @@ -1797,11 +1685,11 @@ babel-plugin-minify-flip-comparisons@^0.4.1: dependencies: babel-helper-is-void-0 "^0.4.1" -babel-plugin-minify-guarded-expressions@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-guarded-expressions/-/babel-plugin-minify-guarded-expressions-0.3.0.tgz#2552d96189ef45d9a463f1a6b5e4fa110703ac8d" +babel-plugin-minify-flip-comparisons@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-flip-comparisons/-/babel-plugin-minify-flip-comparisons-0.4.3.tgz#00ca870cb8f13b45c038b3c1ebc0f227293c965a" dependencies: - babel-helper-flip-expressions "^0.3.0" + babel-helper-is-void-0 "^0.4.3" babel-plugin-minify-guarded-expressions@^0.4.1: version "0.4.1" @@ -1809,19 +1697,19 @@ babel-plugin-minify-guarded-expressions@^0.4.1: dependencies: babel-helper-flip-expressions "^0.4.1" -babel-plugin-minify-infinity@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-infinity/-/babel-plugin-minify-infinity-0.3.0.tgz#c5ec0edd433517cf31b3af17077c202beb48bbe7" +babel-plugin-minify-guarded-expressions@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-guarded-expressions/-/babel-plugin-minify-guarded-expressions-0.4.3.tgz#cc709b4453fd21b1f302877444c89f88427ce397" + dependencies: + babel-helper-flip-expressions "^0.4.3" babel-plugin-minify-infinity@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/babel-plugin-minify-infinity/-/babel-plugin-minify-infinity-0.4.1.tgz#cc9c37dcc1666dc07f1eb478c2b721a11cfb9491" -babel-plugin-minify-mangle-names@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-mangle-names/-/babel-plugin-minify-mangle-names-0.3.0.tgz#f28561bad0dd2f0380816816bb946e219b3b6135" - dependencies: - babel-helper-mark-eval-scopes "^0.3.0" +babel-plugin-minify-infinity@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-infinity/-/babel-plugin-minify-infinity-0.4.3.tgz#dfb876a1b08a06576384ef3f92e653ba607b39ca" babel-plugin-minify-mangle-names@^0.4.1: version "0.4.1" @@ -1829,29 +1717,27 @@ babel-plugin-minify-mangle-names@^0.4.1: dependencies: babel-helper-mark-eval-scopes "^0.4.1" -babel-plugin-minify-numeric-literals@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-numeric-literals/-/babel-plugin-minify-numeric-literals-0.3.0.tgz#b57734a612e8a592005407323c321119f27d4b40" +babel-plugin-minify-mangle-names@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-mangle-names/-/babel-plugin-minify-mangle-names-0.4.3.tgz#16f1bff74b7a7c93dfc241e7831dd5fb4b023ef7" + dependencies: + babel-helper-mark-eval-scopes "^0.4.3" babel-plugin-minify-numeric-literals@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/babel-plugin-minify-numeric-literals/-/babel-plugin-minify-numeric-literals-0.4.1.tgz#964b4e6cc7487c6d4a31a95197c3f421b60c9a47" -babel-plugin-minify-replace@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-replace/-/babel-plugin-minify-replace-0.3.0.tgz#980125bbf7cbb5a637439de9d0b1b030a4693893" +babel-plugin-minify-numeric-literals@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-numeric-literals/-/babel-plugin-minify-numeric-literals-0.4.3.tgz#8e4fd561c79f7801286ff60e8c5fd9deee93c0bc" babel-plugin-minify-replace@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/babel-plugin-minify-replace/-/babel-plugin-minify-replace-0.4.1.tgz#c519d8858c622b2496a364a6135ad2775578d943" -babel-plugin-minify-simplify@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-simplify/-/babel-plugin-minify-simplify-0.3.0.tgz#14574cc74d21c81d3060fafa041010028189f11b" - dependencies: - babel-helper-flip-expressions "^0.3.0" - babel-helper-is-nodes-equiv "^0.0.1" - babel-helper-to-multiple-sequence-expressions "^0.3.0" +babel-plugin-minify-replace@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-replace/-/babel-plugin-minify-replace-0.4.3.tgz#9d289f4ba15d4e6011e8799fa5f1ba77ec81219d" babel-plugin-minify-simplify@^0.4.1: version "0.4.1" @@ -1861,11 +1747,13 @@ babel-plugin-minify-simplify@^0.4.1: babel-helper-is-nodes-equiv "^0.0.1" babel-helper-to-multiple-sequence-expressions "^0.4.1" -babel-plugin-minify-type-constructors@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-plugin-minify-type-constructors/-/babel-plugin-minify-type-constructors-0.3.0.tgz#7f5a86ef322c4746364e3c591b8514eeafea6ad4" +babel-plugin-minify-simplify@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-simplify/-/babel-plugin-minify-simplify-0.4.3.tgz#37756d85c614464b4b0927f2b4e417191d55738a" dependencies: - babel-helper-is-void-0 "^0.3.0" + babel-helper-flip-expressions "^0.4.3" + babel-helper-is-nodes-equiv "^0.0.1" + babel-helper-to-multiple-sequence-expressions "^0.4.3" babel-plugin-minify-type-constructors@^0.4.1: version "0.4.1" @@ -1873,6 +1761,12 @@ babel-plugin-minify-type-constructors@^0.4.1: dependencies: babel-helper-is-void-0 "^0.4.1" +babel-plugin-minify-type-constructors@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/babel-plugin-minify-type-constructors/-/babel-plugin-minify-type-constructors-0.4.3.tgz#1bc6f15b87f7ab1085d42b330b717657a2156500" + dependencies: + babel-helper-is-void-0 "^0.4.3" + babel-plugin-react-docgen@^2.0.0-rc.0: version "2.0.0-rc.0" resolved "https://registry.yarnpkg.com/babel-plugin-react-docgen/-/babel-plugin-react-docgen-2.0.0-rc.0.tgz#e3561de1f1a16037306ec5131456fe625b7736f8" @@ -2210,26 +2104,38 @@ babel-plugin-transform-function-bind@^6.22.0: babel-plugin-syntax-function-bind "^6.8.0" babel-runtime "^6.22.0" -babel-plugin-transform-inline-consecutive-adds@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-inline-consecutive-adds/-/babel-plugin-transform-inline-consecutive-adds-0.3.0.tgz#f07d93689c0002ed2b2b62969bdd99f734e03f57" - babel-plugin-transform-inline-consecutive-adds@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-inline-consecutive-adds/-/babel-plugin-transform-inline-consecutive-adds-0.4.1.tgz#175dedfe876c2ff7a78c751ed4d9dc0597d1171d" -babel-plugin-transform-member-expression-literals@^6.9.0, babel-plugin-transform-member-expression-literals@^6.9.2: +babel-plugin-transform-inline-consecutive-adds@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-inline-consecutive-adds/-/babel-plugin-transform-inline-consecutive-adds-0.4.3.tgz#323d47a3ea63a83a7ac3c811ae8e6941faf2b0d1" + +babel-plugin-transform-member-expression-literals@^6.9.2: version "6.9.2" resolved "https://registry.yarnpkg.com/babel-plugin-transform-member-expression-literals/-/babel-plugin-transform-member-expression-literals-6.9.2.tgz#1f397ab961a5c3a401f2a747af06e72004afcb76" -babel-plugin-transform-merge-sibling-variables@^6.9.0, babel-plugin-transform-merge-sibling-variables@^6.9.2: +babel-plugin-transform-member-expression-literals@^6.9.4: + version "6.9.4" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-member-expression-literals/-/babel-plugin-transform-member-expression-literals-6.9.4.tgz#37039c9a0c3313a39495faac2ff3a6b5b9d038bf" + +babel-plugin-transform-merge-sibling-variables@^6.9.2: version "6.9.2" resolved "https://registry.yarnpkg.com/babel-plugin-transform-merge-sibling-variables/-/babel-plugin-transform-merge-sibling-variables-6.9.2.tgz#994a9004a79c79f0c91c496e8a2dbc7e9b73f7b4" -babel-plugin-transform-minify-booleans@^6.9.0, babel-plugin-transform-minify-booleans@^6.9.2: +babel-plugin-transform-merge-sibling-variables@^6.9.4: + version "6.9.4" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-merge-sibling-variables/-/babel-plugin-transform-merge-sibling-variables-6.9.4.tgz#85b422fc3377b449c9d1cde44087203532401dae" + +babel-plugin-transform-minify-booleans@^6.9.2: version "6.9.2" resolved "https://registry.yarnpkg.com/babel-plugin-transform-minify-booleans/-/babel-plugin-transform-minify-booleans-6.9.2.tgz#cf995be067a0303cb526549f03dcd9682419430d" +babel-plugin-transform-minify-booleans@^6.9.4: + version "6.9.4" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-minify-booleans/-/babel-plugin-transform-minify-booleans-6.9.4.tgz#acbb3e56a3555dd23928e4b582d285162dd2b198" + babel-plugin-transform-object-assign@^6.5.0: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-assign/-/babel-plugin-transform-object-assign-6.22.0.tgz#f99d2f66f1a0b0d498e346c5359684740caa20ba" @@ -2243,12 +2149,18 @@ babel-plugin-transform-object-rest-spread@6.26.0, babel-plugin-transform-object- babel-plugin-syntax-object-rest-spread "^6.8.0" babel-runtime "^6.26.0" -babel-plugin-transform-property-literals@^6.9.0, babel-plugin-transform-property-literals@^6.9.2: +babel-plugin-transform-property-literals@^6.9.2: version "6.9.2" resolved "https://registry.yarnpkg.com/babel-plugin-transform-property-literals/-/babel-plugin-transform-property-literals-6.9.2.tgz#a58d0996cf2adaf224f7ce848ad1cde4cd8cf275" dependencies: esutils "^2.0.2" +babel-plugin-transform-property-literals@^6.9.4: + version "6.9.4" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-property-literals/-/babel-plugin-transform-property-literals-6.9.4.tgz#98c1d21e255736573f93ece54459f6ce24985d39" + dependencies: + esutils "^2.0.2" + babel-plugin-transform-react-constant-elements@6.23.0: version "6.23.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-constant-elements/-/babel-plugin-transform-react-constant-elements-6.23.0.tgz#2f119bf4d2cdd45eb9baaae574053c604f6147dd" @@ -2289,27 +2201,29 @@ babel-plugin-transform-regenerator@6.26.0, babel-plugin-transform-regenerator@^6 dependencies: regenerator-transform "^0.10.0" -babel-plugin-transform-regexp-constructors@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-regexp-constructors/-/babel-plugin-transform-regexp-constructors-0.3.0.tgz#9bb2c8dd082271a5cb1b3a441a7c52e8fd07e0f5" - babel-plugin-transform-regexp-constructors@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-regexp-constructors/-/babel-plugin-transform-regexp-constructors-0.4.1.tgz#4ff7f1da0e0c31910d0e1461abed0c679cb31eee" -babel-plugin-transform-remove-console@^6.9.0, babel-plugin-transform-remove-console@^6.9.2: +babel-plugin-transform-regexp-constructors@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-regexp-constructors/-/babel-plugin-transform-regexp-constructors-0.4.3.tgz#58b7775b63afcf33328fae9a5f88fbd4fb0b4965" + +babel-plugin-transform-remove-console@^6.9.2: version "6.9.2" resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-console/-/babel-plugin-transform-remove-console-6.9.2.tgz#e8a0c27d56c9503ca16e284f6b64dbd4b95d21e9" -babel-plugin-transform-remove-debugger@^6.9.0, babel-plugin-transform-remove-debugger@^6.9.2: +babel-plugin-transform-remove-console@^6.9.4: + version "6.9.4" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-console/-/babel-plugin-transform-remove-console-6.9.4.tgz#b980360c067384e24b357a588d807d3c83527780" + +babel-plugin-transform-remove-debugger@^6.9.2: version "6.9.2" resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-debugger/-/babel-plugin-transform-remove-debugger-6.9.2.tgz#536c87bdb6200d1460c996dd95d179cf38c24ee1" -babel-plugin-transform-remove-undefined@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-undefined/-/babel-plugin-transform-remove-undefined-0.3.0.tgz#03f5f0071867781e9beabbc7b77bf8095fd3f3ec" - dependencies: - babel-helper-evaluate-path "^0.3.0" +babel-plugin-transform-remove-debugger@^6.9.4: + version "6.9.4" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-debugger/-/babel-plugin-transform-remove-debugger-6.9.4.tgz#42b727631c97978e1eb2d199a7aec84a18339ef2" babel-plugin-transform-remove-undefined@^0.4.1: version "0.4.1" @@ -2317,16 +2231,26 @@ babel-plugin-transform-remove-undefined@^0.4.1: dependencies: babel-helper-evaluate-path "^0.4.1" +babel-plugin-transform-remove-undefined@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-remove-undefined/-/babel-plugin-transform-remove-undefined-0.4.3.tgz#d40b0da7f91c08c06cc72b767474c01c4894de02" + dependencies: + babel-helper-evaluate-path "^0.4.3" + babel-plugin-transform-runtime@6.23.0, babel-plugin-transform-runtime@^6.23.0: version "6.23.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz#88490d446502ea9b8e7efb0fe09ec4d99479b1ee" dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-simplify-comparison-operators@^6.9.0, babel-plugin-transform-simplify-comparison-operators@^6.9.2: +babel-plugin-transform-simplify-comparison-operators@^6.9.2: version "6.9.2" resolved "https://registry.yarnpkg.com/babel-plugin-transform-simplify-comparison-operators/-/babel-plugin-transform-simplify-comparison-operators-6.9.2.tgz#0c0e9afa732924f03aa982fd63c92d0408bd5656" +babel-plugin-transform-simplify-comparison-operators@^6.9.4: + version "6.9.4" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-simplify-comparison-operators/-/babel-plugin-transform-simplify-comparison-operators-6.9.4.tgz#f62afe096cab0e1f68a2d753fdf283888471ceb9" + babel-plugin-transform-strict-mode@^6.24.1: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" @@ -2334,10 +2258,14 @@ babel-plugin-transform-strict-mode@^6.24.1: babel-runtime "^6.22.0" babel-types "^6.24.1" -babel-plugin-transform-undefined-to-void@^6.9.0, babel-plugin-transform-undefined-to-void@^6.9.2: +babel-plugin-transform-undefined-to-void@^6.9.2: version "6.9.2" resolved "https://registry.yarnpkg.com/babel-plugin-transform-undefined-to-void/-/babel-plugin-transform-undefined-to-void-6.9.2.tgz#165fde73393276bea02a739658878dcced0b9ebb" +babel-plugin-transform-undefined-to-void@^6.9.4: + version "6.9.4" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-undefined-to-void/-/babel-plugin-transform-undefined-to-void-6.9.4.tgz#be241ca81404030678b748717322b89d0c8fe280" + babel-plugin-transform-vue-jsx@^3.5.0: version "3.5.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-vue-jsx/-/babel-plugin-transform-vue-jsx-3.5.0.tgz#6b1ad29351ad753919403675f0bf8b2a43e17671" @@ -2352,7 +2280,7 @@ babel-polyfill@^6.23.0, babel-polyfill@^6.26.0: core-js "^2.5.0" regenerator-runtime "^0.10.5" -babel-preset-env@1.6.1, babel-preset-env@^1.6.0, babel-preset-env@^1.6.1: +babel-preset-env@1.6.1, babel-preset-env@^1.6.0: version "1.6.1" resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.6.1.tgz#a18b564cc9b9afdf4aae57ae3c1b0d99188e6f48" dependencies: @@ -2387,6 +2315,41 @@ babel-preset-env@1.6.1, babel-preset-env@^1.6.0, babel-preset-env@^1.6.1: invariant "^2.2.2" semver "^5.3.0" +babel-preset-env@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.7.0.tgz#dea79fa4ebeb883cd35dab07e260c1c9c04df77a" + dependencies: + babel-plugin-check-es2015-constants "^6.22.0" + babel-plugin-syntax-trailing-function-commas "^6.22.0" + babel-plugin-transform-async-to-generator "^6.22.0" + babel-plugin-transform-es2015-arrow-functions "^6.22.0" + babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" + babel-plugin-transform-es2015-block-scoping "^6.23.0" + babel-plugin-transform-es2015-classes "^6.23.0" + babel-plugin-transform-es2015-computed-properties "^6.22.0" + babel-plugin-transform-es2015-destructuring "^6.23.0" + babel-plugin-transform-es2015-duplicate-keys "^6.22.0" + babel-plugin-transform-es2015-for-of "^6.23.0" + babel-plugin-transform-es2015-function-name "^6.22.0" + babel-plugin-transform-es2015-literals "^6.22.0" + babel-plugin-transform-es2015-modules-amd "^6.22.0" + babel-plugin-transform-es2015-modules-commonjs "^6.23.0" + babel-plugin-transform-es2015-modules-systemjs "^6.23.0" + babel-plugin-transform-es2015-modules-umd "^6.23.0" + babel-plugin-transform-es2015-object-super "^6.22.0" + babel-plugin-transform-es2015-parameters "^6.23.0" + babel-plugin-transform-es2015-shorthand-properties "^6.22.0" + babel-plugin-transform-es2015-spread "^6.22.0" + babel-plugin-transform-es2015-sticky-regex "^6.22.0" + babel-plugin-transform-es2015-template-literals "^6.22.0" + babel-plugin-transform-es2015-typeof-symbol "^6.23.0" + babel-plugin-transform-es2015-unicode-regex "^6.22.0" + babel-plugin-transform-exponentiation-operator "^6.22.0" + babel-plugin-transform-regenerator "^6.22.0" + browserslist "^3.2.6" + invariant "^2.2.2" + semver "^5.3.0" + babel-preset-es2015-node@^6.1.1: version "6.1.1" resolved "https://registry.yarnpkg.com/babel-preset-es2015-node/-/babel-preset-es2015-node-6.1.1.tgz#60b23157024b0cfebf3a63554cb05ee035b4e55f" @@ -2489,34 +2452,6 @@ babel-preset-jest@^22.4.3: babel-plugin-jest-hoist "^22.4.3" babel-plugin-syntax-object-rest-spread "^6.13.0" -babel-preset-minify@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/babel-preset-minify/-/babel-preset-minify-0.3.0.tgz#7db64afa75f16f6e06c0aa5f25195f6f36784d77" - dependencies: - babel-plugin-minify-builtins "^0.3.0" - babel-plugin-minify-constant-folding "^0.3.0" - babel-plugin-minify-dead-code-elimination "^0.3.0" - babel-plugin-minify-flip-comparisons "^0.3.0" - babel-plugin-minify-guarded-expressions "^0.3.0" - babel-plugin-minify-infinity "^0.3.0" - babel-plugin-minify-mangle-names "^0.3.0" - babel-plugin-minify-numeric-literals "^0.3.0" - babel-plugin-minify-replace "^0.3.0" - babel-plugin-minify-simplify "^0.3.0" - babel-plugin-minify-type-constructors "^0.3.0" - babel-plugin-transform-inline-consecutive-adds "^0.3.0" - babel-plugin-transform-member-expression-literals "^6.9.0" - babel-plugin-transform-merge-sibling-variables "^6.9.0" - babel-plugin-transform-minify-booleans "^6.9.0" - babel-plugin-transform-property-literals "^6.9.0" - babel-plugin-transform-regexp-constructors "^0.3.0" - babel-plugin-transform-remove-console "^6.9.0" - babel-plugin-transform-remove-debugger "^6.9.0" - babel-plugin-transform-remove-undefined "^0.3.0" - babel-plugin-transform-simplify-comparison-operators "^6.9.0" - babel-plugin-transform-undefined-to-void "^6.9.0" - lodash.isplainobject "^4.0.6" - babel-preset-minify@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/babel-preset-minify/-/babel-preset-minify-0.4.1.tgz#40e3edad743bb107dd63c7cfb21c604dccd83674" @@ -2545,6 +2480,34 @@ babel-preset-minify@^0.4.1: babel-plugin-transform-undefined-to-void "^6.9.2" lodash.isplainobject "^4.0.6" +babel-preset-minify@^0.4.2: + version "0.4.3" + resolved "https://registry.yarnpkg.com/babel-preset-minify/-/babel-preset-minify-0.4.3.tgz#b29c3dd6918905384598f092b955152e26a1fe0f" + dependencies: + babel-plugin-minify-builtins "^0.4.3" + babel-plugin-minify-constant-folding "^0.4.3" + babel-plugin-minify-dead-code-elimination "^0.4.3" + babel-plugin-minify-flip-comparisons "^0.4.3" + babel-plugin-minify-guarded-expressions "^0.4.3" + babel-plugin-minify-infinity "^0.4.3" + babel-plugin-minify-mangle-names "^0.4.3" + babel-plugin-minify-numeric-literals "^0.4.3" + babel-plugin-minify-replace "^0.4.3" + babel-plugin-minify-simplify "^0.4.3" + babel-plugin-minify-type-constructors "^0.4.3" + babel-plugin-transform-inline-consecutive-adds "^0.4.3" + babel-plugin-transform-member-expression-literals "^6.9.4" + babel-plugin-transform-merge-sibling-variables "^6.9.4" + babel-plugin-transform-minify-booleans "^6.9.4" + babel-plugin-transform-property-literals "^6.9.4" + babel-plugin-transform-regexp-constructors "^0.4.3" + babel-plugin-transform-remove-console "^6.9.4" + babel-plugin-transform-remove-debugger "^6.9.4" + babel-plugin-transform-remove-undefined "^0.4.3" + babel-plugin-transform-simplify-comparison-operators "^6.9.4" + babel-plugin-transform-undefined-to-void "^6.9.4" + lodash.isplainobject "^4.0.6" + babel-preset-react-app@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/babel-preset-react-app/-/babel-preset-react-app-3.1.1.tgz#d3f06a79742f0e89d7afcb72e282d9809c850920" @@ -3229,6 +3192,13 @@ browserslist@^3.2.6: caniuse-lite "^1.0.30000830" electron-to-chromium "^1.3.42" +browserslist@^3.2.7: + version "3.2.7" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.7.tgz#aa488634d320b55e88bab0256184dbbcca1e6de9" + dependencies: + caniuse-lite "^1.0.30000835" + electron-to-chromium "^1.3.45" + bser@1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/bser/-/bser-1.0.2.tgz#381116970b2a6deea5646dd15dd7278444b56169" @@ -3245,6 +3215,10 @@ btoa-lite@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/btoa-lite/-/btoa-lite-1.0.0.tgz#337766da15801210fdd956c22e9c6891ab9d0337" +buffer-equal-constant-time@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819" + buffer-indexof@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz#52fabcc6a606d1a00302802648ef68f639da268c" @@ -3493,9 +3467,9 @@ caniuse-lite@^1.0.30000830: version "1.0.30000830" resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000830.tgz#cb96b8a2dd3cbfe04acea2af3c4e894249095328" -caniuse-lite@^1.0.30000832: - version "1.0.30000832" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000832.tgz#22a277f1d623774cc9aea2f7c1a65cb1603c63b8" +caniuse-lite@^1.0.30000835, caniuse-lite@^1.0.30000839: + version "1.0.30000842" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000842.tgz#7a198e3181a207f4b5749b8f5a1817685bf3d7df" capture-stack-trace@^1.0.0: version "1.0.0" @@ -3920,9 +3894,9 @@ code-point-at@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" -codecov@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/codecov/-/codecov-3.0.1.tgz#cc4c5cd1955c6be47f6dda2f8c55bcc43c732dca" +codecov@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/codecov/-/codecov-3.0.2.tgz#aea43843a5cd2fb6b7e488b2eff25d367ab70b12" dependencies: argv "0.0.2" request "^2.81.0" @@ -4680,9 +4654,9 @@ create-react-class@^15.5.2, create-react-class@^15.6.2: loose-envify "^1.3.1" object-assign "^4.1.1" -cross-env@^5.1.4: - version "5.1.4" - resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-5.1.4.tgz#f61c14291f7cc653bb86457002ea80a04699d022" +cross-env@^5.1.5: + version "5.1.5" + resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-5.1.5.tgz#31daf7f3a52ef337c8ddda585f08175cce5d1fa5" dependencies: cross-spawn "^5.1.0" is-windows "^1.0.0" @@ -4940,11 +4914,11 @@ damerau-levenshtein@^1.0.0: version "1.0.4" resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz#03191c432cb6eea168bb77f3a55ffdccb8978514" -danger@^3.6.5: - version "3.6.5" - resolved "https://registry.yarnpkg.com/danger/-/danger-3.6.5.tgz#e00fe1e88b2d82ab2a90ce7e0da5b9f15d1206d4" +danger@^3.6.6: + version "3.7.0" + resolved "https://registry.yarnpkg.com/danger/-/danger-3.7.0.tgz#f943e12a28c29bb8ce6194f15bf02cdc0832d7a4" dependencies: - "@octokit/rest" "^15.2.6" + "@octokit/rest" "^15.5.0" babel-polyfill "^6.23.0" chalk "^2.3.0" commander "^2.13.0" @@ -4954,6 +4928,7 @@ danger@^3.6.5: jsome "^2.3.25" json5 "^1.0.0" jsonpointer "^4.0.1" + jsonwebtoken "^8.2.1" lodash.find "^4.6.0" lodash.includes "^4.3.0" lodash.isobject "^3.0.2" @@ -4966,11 +4941,11 @@ danger@^3.6.5: parse-github-url "^1.0.2" parse-link-header "^1.0.1" pinpoint "^1.1.0" - readline-sync "^1.4.7" - require-from-string "^2.0.1" + readline-sync "^1.4.9" + require-from-string "^2.0.2" rfc6902 "^2.2.2" supports-hyperlinks "^1.0.1" - vm2 patriksimek/vm2#custom_files + vm2 "^3.6.0" voca "^1.4.0" dargs@^4.0.1: @@ -5477,6 +5452,12 @@ ecc-jsbn@~0.1.1: dependencies: jsbn "~0.1.0" +ecdsa-sig-formatter@1.0.10: + version "1.0.10" + resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.10.tgz#1c595000f04a8897dfb85000892a0f4c33af86c3" + dependencies: + safe-buffer "^5.0.1" + ecstatic@^2.0.0: version "2.2.1" resolved "https://registry.yarnpkg.com/ecstatic/-/ecstatic-2.2.1.tgz#b5087fad439dd9dd49d31e18131454817fe87769" @@ -5522,6 +5503,10 @@ electron-to-chromium@^1.3.42: version "1.3.44" resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.44.tgz#ef6b150a60d523082388cadad88085ecd2fd4684" +electron-to-chromium@^1.3.45: + version "1.3.47" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.47.tgz#764e887ca9104d01a0ac8eabee7dfc0e2ce14104" + elegant-spinner@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" @@ -6032,9 +6017,9 @@ eslint-plugin-react@7.4.0: jsx-ast-utils "^2.0.0" prop-types "^15.5.10" -eslint-plugin-react@^7.7.0: - version "7.7.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.7.0.tgz#f606c719dbd8a1a2b3d25c16299813878cca0160" +eslint-plugin-react@^7.8.2: + version "7.8.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.8.2.tgz#e95c9c47fece55d2303d1a67c9d01b930b88a51d" dependencies: doctrine "^2.0.2" has "^1.0.1" @@ -7285,9 +7270,9 @@ glamor@^2.20.40: prop-types "^15.5.10" through "^2.3.8" -glamorous@^4.12.1, glamorous@^4.12.5: - version "4.12.5" - resolved "https://registry.yarnpkg.com/glamorous/-/glamorous-4.12.5.tgz#909e0ec2ab3136e4749bf82edd9f33b51745e41f" +glamorous@^4.13.0: + version "4.13.0" + resolved "https://registry.yarnpkg.com/glamorous/-/glamorous-4.13.0.tgz#4ac5cb05633aa49a0396d409f665dd9b614f1b5a" dependencies: brcast "^3.0.0" csstype "^2.2.0" @@ -8176,7 +8161,7 @@ https-proxy-agent@^2.1.0: agent-base "^4.1.0" debug "^3.1.0" -https-proxy-agent@^2.2.0: +https-proxy-agent@^2.2.0, https-proxy-agent@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz#51552970fa04d723e04c56d04178c3f92592bbc0" dependencies: @@ -9997,6 +9982,21 @@ jsonpointer@^4.0.0, jsonpointer@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" +jsonwebtoken@^8.2.1: + version "8.2.1" + resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-8.2.1.tgz#333ee39aa8f238f32fa41693e7a2fb7e42f82b31" + dependencies: + jws "^3.1.4" + lodash.includes "^4.3.0" + lodash.isboolean "^3.0.3" + lodash.isinteger "^4.0.4" + lodash.isnumber "^3.0.3" + lodash.isplainobject "^4.0.6" + lodash.isstring "^4.0.1" + lodash.once "^4.0.0" + ms "^2.1.1" + xtend "^4.0.1" + jsprim@^1.2.2: version "1.4.1" resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" @@ -10026,6 +10026,21 @@ jszip@^3.1.3: pako "~1.0.2" readable-stream "~2.0.6" +jwa@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/jwa/-/jwa-1.1.6.tgz#87240e76c9808dbde18783cf2264ef4929ee50e6" + dependencies: + buffer-equal-constant-time "1.0.1" + ecdsa-sig-formatter "1.0.10" + safe-buffer "^5.0.1" + +jws@^3.1.4: + version "3.1.5" + resolved "https://registry.yarnpkg.com/jws/-/jws-3.1.5.tgz#80d12d05b293d1e841e7cb8b4e69e561adcf834f" + dependencies: + jwa "^1.1.5" + safe-buffer "^5.0.1" + karma-source-map-support@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/karma-source-map-support/-/karma-source-map-support-1.2.0.tgz#1bf81e7bb4b089627ab352ec4179e117c406a540" @@ -10667,6 +10682,10 @@ lodash.isarray@^3.0.0: version "3.0.4" resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" +lodash.isboolean@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz#6c2e171db2a257cd96802fd43b01b20d5f5870f6" + lodash.isequal@^3.0: version "3.0.4" resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-3.0.4.tgz#1c35eb3b6ef0cd1ff51743e3ea3cf7fdffdacb64" @@ -10678,6 +10697,14 @@ lodash.isequal@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" +lodash.isinteger@^4.0.4: + version "4.0.4" + resolved "https://registry.yarnpkg.com/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz#619c0af3d03f8b04c31f5882840b77b11cd68343" + +lodash.isnumber@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz#3ce76810c5928d03352301ac287317f11c0b1ffc" + lodash.isobject@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/lodash.isobject/-/lodash.isobject-3.0.2.tgz#3c8fb8d5b5bf4bf90ae06e14f2a530a4ed935e1d" @@ -10686,6 +10713,10 @@ lodash.isplainobject@^4.0.6: version "4.0.6" resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" +lodash.isstring@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" + lodash.istypedarray@^3.0.0: version "3.0.6" resolved "https://registry.yarnpkg.com/lodash.istypedarray/-/lodash.istypedarray-3.0.6.tgz#c9a477498607501d8e8494d283b87c39281cef62" @@ -10714,6 +10745,10 @@ lodash.mergewith@^4.6.0: version "4.6.0" resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz#150cf0a16791f5903b8891eab154609274bdea55" +lodash.once@^4.0.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac" + lodash.pad@^4.1.0: version "4.5.1" resolved "https://registry.yarnpkg.com/lodash.pad/-/lodash.pad-4.5.1.tgz#4330949a833a7c8da22cc20f6a26c4d59debba70" @@ -11527,9 +11562,9 @@ mkdirp@0.5.1, mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdi dependencies: minimist "0.0.8" -mock-fs@^4.3.0: - version "4.4.2" - resolved "https://registry.yarnpkg.com/mock-fs/-/mock-fs-4.4.2.tgz#09dec5313f97095a450be6aa2ad8ab6738d63d6b" +mock-fs@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/mock-fs/-/mock-fs-4.5.0.tgz#75245b966f7e3defe197b03454af9c5b355594b7" modify-values@^1.0.0: version "1.0.0" @@ -11595,7 +11630,7 @@ ms@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" -ms@2.1.1, ms@^2.0.0: +ms@2.1.1, ms@^2.0.0, ms@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" @@ -13394,9 +13429,9 @@ protoduck@^4.0.0: dependencies: genfun "^4.0.1" -protractor@~5.3.1: - version "5.3.1" - resolved "https://registry.yarnpkg.com/protractor/-/protractor-5.3.1.tgz#b8b8ac4ad2278bb7a461b99a34d79532095f14b8" +protractor@~5.3.2: + version "5.3.2" + resolved "https://registry.yarnpkg.com/protractor/-/protractor-5.3.2.tgz#b8278f3131d9d52fa1172ed0f7fec03085fbe0ce" dependencies: "@types/node" "^6.0.46" "@types/q" "^0.0.32" @@ -13408,7 +13443,7 @@ protractor@~5.3.1: jasminewd2 "^2.1.0" optimist "~0.6.0" q "1.4.1" - saucelabs "~1.3.0" + saucelabs "^1.5.0" selenium-webdriver "3.6.0" source-map-support "~0.4.0" webdriver-js-extender "^1.0.0" @@ -13502,14 +13537,14 @@ punycode@~1.2.3: version "1.2.4" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.2.4.tgz#54008ac972aec74175def9cba6df7fa9d3918740" -puppeteer@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-1.3.0.tgz#f571c5f27153ca164a8188e6328ce2e4946878f3" +puppeteer@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-1.4.0.tgz#437f0f3450d76e437185c0bf06f446e80f184692" dependencies: - debug "^2.6.8" + debug "^3.1.0" extract-zip "^1.6.5" https-proxy-agent "^2.1.0" - mime "^1.3.4" + mime "^2.0.3" progress "^2.0.0" proxy-from-env "^1.0.0" rimraf "^2.6.1" @@ -13902,10 +13937,14 @@ react-is@^16.3.2: version "16.3.2" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.3.2.tgz#f4d3d0e2f5fbb6ac46450641eb2e25bf05d36b22" -react-lifecycles-compat@^3.0.0, react-lifecycles-compat@^3.0.2: +react-lifecycles-compat@^3.0.0: version "3.0.2" resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.2.tgz#7279047275bd727a912e25f734c0559527e84eff" +react-lifecycles-compat@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" + react-modal@^3.4.4: version "3.4.4" resolved "https://registry.yarnpkg.com/react-modal/-/react-modal-3.4.4.tgz#e9dde25e9e85a59c76831f2a2b468712a546aded" @@ -13921,9 +13960,9 @@ react-native-compat@^1.0.0: dependencies: prop-types "^15.5.10" -react-native-iphone-x-helper@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.0.2.tgz#7dbca530930f7c1ce8633cc8fd13ba94102992e1" +react-native-iphone-x-helper@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.0.3.tgz#7a2f1e0574e899a0f1d426e6167fd98990083214" react-native@^0.52.2: version "0.52.2" @@ -14334,9 +14373,9 @@ readjson@^1.1.0: dependencies: try-catch "~1.0.0" -readline-sync@^1.4.7: - version "1.4.7" - resolved "https://registry.yarnpkg.com/readline-sync/-/readline-sync-1.4.7.tgz#001bfdd4c06110c3c084c63bf7c6a56022213f30" +readline-sync@^1.4.9: + version "1.4.9" + resolved "https://registry.yarnpkg.com/readline-sync/-/readline-sync-1.4.9.tgz#3eda8e65f23cd2a17e61301b1f0003396af5ecda" readline2@^1.0.1: version "1.0.1" @@ -14924,6 +14963,10 @@ require-from-string@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.1.tgz#c545233e9d7da6616e9d59adfb39fc9f588676ff" +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + require-main-filename@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" @@ -15207,11 +15250,11 @@ sass-loader@^7.0.1: neo-async "^2.5.0" pify "^3.0.0" -saucelabs@~1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/saucelabs/-/saucelabs-1.3.0.tgz#d240e8009df7fa87306ec4578a69ba3b5c424fee" +saucelabs@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/saucelabs/-/saucelabs-1.5.0.tgz#9405a73c360d449b232839919a86c396d379fd9d" dependencies: - https-proxy-agent "^1.0.0" + https-proxy-agent "^2.2.1" sax@0.5.x: version "0.5.8" @@ -15622,9 +15665,9 @@ shelljs@0.3.x: version "0.3.0" resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.3.0.tgz#3596e6307a781544f591f37da618360f31db57b1" -shelljs@^0.8.1: - version "0.8.1" - resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.1.tgz#729e038c413a2254c4078b95ed46e0397154a9f1" +shelljs@^0.8.2: + version "0.8.2" + resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.2.tgz#345b7df7763f4c2340d584abb532c5f752ca9e35" dependencies: glob "^7.0.0" interpret "^1.0.0" @@ -16824,9 +16867,9 @@ ts-jest@^22.4.1: pkg-dir "^2.0.0" yargs "^11.0.0" -ts-loader@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-4.2.0.tgz#c380c399fc81f82cad0e3044f9c1f775ecde6efa" +ts-loader@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-4.3.0.tgz#4e3ba172783d1256d3a23bdfadde011a795fae9e" dependencies: chalk "^2.3.0" enhanced-resolve "^4.0.0" @@ -17575,9 +17618,9 @@ vm-browserify@0.0.4, vm-browserify@~0.0.1: dependencies: indexof "0.0.1" -vm2@patriksimek/vm2#custom_files: - version "3.5.0" - resolved "https://codeload.github.com/patriksimek/vm2/tar.gz/7e82f90ac705fc44fad044147cb0df09b4c79a57" +vm2@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/vm2/-/vm2-3.6.0.tgz#a6e6370c57e6edd77decfb7b1ad64fc87dbf2d4e" voca@^1.4.0: version "1.4.0" @@ -17697,24 +17740,14 @@ wcwidth@^1.0.0: dependencies: defaults "^1.0.3" -webassemblyjs@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/webassemblyjs/-/webassemblyjs-1.3.0.tgz#970ca465d5ee45ebe611c5c6f7d461900c3e10b2" +webassemblyjs@1.4.3: + version "1.4.3" + resolved "https://registry.yarnpkg.com/webassemblyjs/-/webassemblyjs-1.4.3.tgz#0591893efb8fbde74498251cbe4b2d83df9239cb" dependencies: - "@webassemblyjs/ast" "1.3.0" - "@webassemblyjs/validation" "1.3.0" - "@webassemblyjs/wasm-parser" "1.3.0" - "@webassemblyjs/wast-parser" "1.3.0" - long "^3.2.0" - -webassemblyjs@1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/webassemblyjs/-/webassemblyjs-1.3.1.tgz#2bb8ebc724d0fe09b9562ab20e32ce3f5bac5c74" - dependencies: - "@webassemblyjs/ast" "1.3.1" - "@webassemblyjs/validation" "1.3.1" - "@webassemblyjs/wasm-parser" "1.3.1" - "@webassemblyjs/wast-parser" "1.3.1" + "@webassemblyjs/ast" "1.4.3" + "@webassemblyjs/validation" "1.4.3" + "@webassemblyjs/wasm-parser" "1.4.3" + "@webassemblyjs/wast-parser" "1.4.3" long "^3.2.0" webdriver-js-extender@^1.0.0: @@ -17874,9 +17907,9 @@ webpack-dev-server@~2.11.0: webpack-dev-middleware "1.12.2" yargs "6.6.0" -webpack-hot-middleware@^2.21.2, webpack-hot-middleware@^2.22.1: - version "2.22.1" - resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.22.1.tgz#2ff865bfebc8e9937bd1619f0f48d6ab601bfea0" +webpack-hot-middleware@^2.22.2: + version "2.22.2" + resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.22.2.tgz#623b77ce591fcd4e1fb99f18167781443e50afac" dependencies: ansi-html "0.0.7" html-entities "^1.2.0" @@ -17945,40 +17978,13 @@ webpack@3.8.1: webpack-sources "^1.0.1" yargs "^8.0.2" -webpack@^4.5.0, webpack@^4.6.0: - version "4.8.1" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.8.1.tgz#59e38f99f2751c931dd09a035aba7bec4b5f916e" +webpack@^4.8.3: + version "4.8.3" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.8.3.tgz#957c8e80000f9e5cc03d775e78b472d8954f4eeb" dependencies: - "@webassemblyjs/ast" "1.3.1" - "@webassemblyjs/wasm-edit" "1.3.1" - "@webassemblyjs/wasm-parser" "1.3.1" - acorn "^5.0.0" - acorn-dynamic-import "^3.0.0" - ajv "^6.1.0" - ajv-keywords "^3.1.0" - chrome-trace-event "^0.1.1" - enhanced-resolve "^4.0.0" - eslint-scope "^3.7.1" - loader-runner "^2.3.0" - loader-utils "^1.1.0" - memory-fs "~0.4.1" - micromatch "^3.1.8" - mkdirp "~0.5.0" - neo-async "^2.5.0" - node-libs-browser "^2.0.0" - schema-utils "^0.4.4" - tapable "^1.0.0" - uglifyjs-webpack-plugin "^1.2.4" - watchpack "^1.5.0" - webpack-sources "^1.0.1" - -webpack@^4.8.0: - version "4.8.0" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.8.0.tgz#4faef32daf17db89be76b1cb90434508aeec8d3a" - dependencies: - "@webassemblyjs/ast" "1.3.0" - "@webassemblyjs/wasm-edit" "1.3.0" - "@webassemblyjs/wasm-parser" "1.3.0" + "@webassemblyjs/ast" "1.4.3" + "@webassemblyjs/wasm-edit" "1.4.3" + "@webassemblyjs/wasm-parser" "1.4.3" acorn "^5.0.0" acorn-dynamic-import "^3.0.0" ajv "^6.1.0"