From f2e8d14a4148961feb33e957bbe532fec1d05758 Mon Sep 17 00:00:00 2001 From: Derrick Pelletier Date: Mon, 9 Oct 2017 17:54:53 -0700 Subject: [PATCH 01/32] Added button knob type, with handler callback support --- addons/knobs/src/components/Panel.js | 4 +- addons/knobs/src/components/PropField.js | 2 +- addons/knobs/src/components/types/Button.js | 42 +++++++++++++++++++ addons/knobs/src/components/types/index.js | 2 + addons/knobs/src/index.js | 4 ++ addons/knobs/src/react/WrapStory.js | 4 ++ addons/knobs/src/vue/index.js | 4 ++ .../cra-kitchen-sink/src/stories/index.js | 4 ++ 8 files changed, 63 insertions(+), 3 deletions(-) create mode 100644 addons/knobs/src/components/types/Button.js diff --git a/addons/knobs/src/components/Panel.js b/addons/knobs/src/components/Panel.js index 429958e71b29..15ef94c4f0d6 100644 --- a/addons/knobs/src/components/Panel.js +++ b/addons/knobs/src/components/Panel.js @@ -90,8 +90,8 @@ export default class Panel extends React.Component { if (!this.loadedFromUrl) { const urlValue = api.getQueryParam(`knob-${name}`); - if (urlValue !== undefined) { - // If the knob value present in url + if (urlValue !== undefined && knob.type !== 'button') { + // If the knob value present in url and type is not a button knob.value = Types[knob.type].deserialize(urlValue); channel.emit('addon:knobs:knobChange', knob); } diff --git a/addons/knobs/src/components/PropField.js b/addons/knobs/src/components/PropField.js index a9bf1ac80b60..2303d6b18ec4 100644 --- a/addons/knobs/src/components/PropField.js +++ b/addons/knobs/src/components/PropField.js @@ -53,7 +53,7 @@ export default class PropField extends React.Component { return (
diff --git a/addons/knobs/src/components/types/Button.js b/addons/knobs/src/components/types/Button.js new file mode 100644 index 000000000000..5dbc9b21f1d1 --- /dev/null +++ b/addons/knobs/src/components/types/Button.js @@ -0,0 +1,42 @@ +import PropTypes from 'prop-types'; +import React from 'react'; + +const styles = { + height: '26px', +}; + +class ButtonType extends React.Component { + render() { + const { knob, onChange } = this.props; + return ( + + ); + } +} + +ButtonType.defaultProps = { + knob: {}, + onChange: value => value, +}; + +ButtonType.propTypes = { + knob: PropTypes.shape({ + name: PropTypes.string, + }), + onChange: PropTypes.func, +}; + +ButtonType.serialize = value => value; +ButtonType.deserialize = value => value; + +export default ButtonType; diff --git a/addons/knobs/src/components/types/index.js b/addons/knobs/src/components/types/index.js index a74e2459eaa6..ebd51deb858e 100644 --- a/addons/knobs/src/components/types/index.js +++ b/addons/knobs/src/components/types/index.js @@ -6,6 +6,7 @@ import ObjectType from './Object'; import SelectType from './Select'; import ArrayType from './Array'; import DateType from './Date'; +import ButtonType from './Button'; export default { text: TextType, @@ -16,4 +17,5 @@ export default { select: SelectType, array: ArrayType, date: DateType, + button: ButtonType, }; diff --git a/addons/knobs/src/index.js b/addons/knobs/src/index.js index 2f4c16dcddca..84df833e5c5a 100644 --- a/addons/knobs/src/index.js +++ b/addons/knobs/src/index.js @@ -58,6 +58,10 @@ export function date(name, value = new Date()) { return manager.knob(name, { type: 'date', value: proxyValue }); } +export function button(name, callback) { + return manager.knob(name, { type: 'button', callback, hideLabel: true }); +} + // "Higher order component" / wrapper style API // In 3.3, this will become `withKnobs`, once our decorator API supports it. // See https://github.com/storybooks/storybook/pull/1527 diff --git a/addons/knobs/src/react/WrapStory.js b/addons/knobs/src/react/WrapStory.js index 29568e2950ad..36784d2328f8 100644 --- a/addons/knobs/src/react/WrapStory.js +++ b/addons/knobs/src/react/WrapStory.js @@ -45,6 +45,10 @@ export default class WrapStory extends React.Component { const { knobStore, storyFn, context } = this.props; // Update the related knob and it's value. const knobOptions = knobStore.get(name); + + // if the knob is a button, a change event should call the callback + if (knobOptions.callback) knobOptions.callback(); + knobOptions.value = value; knobStore.markAllUnused(); this.setState({ storyContent: storyFn(context) }); diff --git a/addons/knobs/src/vue/index.js b/addons/knobs/src/vue/index.js index ae99e44f1c1a..5f6c34cd1e26 100644 --- a/addons/knobs/src/vue/index.js +++ b/addons/knobs/src/vue/index.js @@ -8,6 +8,10 @@ export const vueHandler = (channel, knobStore) => getStory => context => ({ const { name, value } = change; // Update the related knob and it's value. const knobOptions = knobStore.get(name); + + // if the knob is a button, a change event should call the callback + if (knobOptions.callback) knobOptions.callback(); + knobOptions.value = value; this.$forceUpdate(); }, diff --git a/examples/cra-kitchen-sink/src/stories/index.js b/examples/cra-kitchen-sink/src/stories/index.js index 6668fb687166..036a59fb26ed 100644 --- a/examples/cra-kitchen-sink/src/stories/index.js +++ b/examples/cra-kitchen-sink/src/stories/index.js @@ -10,6 +10,7 @@ import WithEvents from '@storybook/addon-events'; import { withKnobs, text, + button, number, boolean, color, @@ -84,6 +85,9 @@ storiesOf('Button', module) .add('with knobs', () => { setOptions({ selectedAddonPanel: 'storybooks/storybook-addon-knobs' }); const name = text('Name', 'Storyteller'); + + button('Arbitrary action', action('You clicked it!')); + const age = number('Age', 70, { range: true, min: 0, max: 90, step: 5 }); const fruits = { apple: 'Apple', From 2576d3af272e04da7e7b98200b712689b7a34fff Mon Sep 17 00:00:00 2001 From: Derrick Pelletier Date: Mon, 9 Oct 2017 18:01:24 -0700 Subject: [PATCH 02/32] updated examples for cra and vue --- examples/cra-kitchen-sink/src/stories/index.js | 7 +++---- examples/vue-kitchen-sink/src/stories/index.js | 3 +++ 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/examples/cra-kitchen-sink/src/stories/index.js b/examples/cra-kitchen-sink/src/stories/index.js index 036a59fb26ed..9272cfa3a627 100644 --- a/examples/cra-kitchen-sink/src/stories/index.js +++ b/examples/cra-kitchen-sink/src/stories/index.js @@ -10,13 +10,13 @@ import WithEvents from '@storybook/addon-events'; import { withKnobs, text, - button, number, boolean, color, select, array, date, + button, object, } from '@storybook/addon-knobs'; import centered from '@storybook/addon-centered'; @@ -85,9 +85,6 @@ storiesOf('Button', module) .add('with knobs', () => { setOptions({ selectedAddonPanel: 'storybooks/storybook-addon-knobs' }); const name = text('Name', 'Storyteller'); - - button('Arbitrary action', action('You clicked it!')); - const age = number('Age', 70, { range: true, min: 0, max: 90, step: 5 }); const fruits = { apple: 'Apple', @@ -114,6 +111,8 @@ storiesOf('Button', module) const salutation = nice ? 'Nice to meet you!' : 'Leave me alone!'; const dateOptions = { year: 'numeric', month: 'long', day: 'numeric' }; + button('Arbitrary action', action('You clicked it!')); + return (

{intro}

diff --git a/examples/vue-kitchen-sink/src/stories/index.js b/examples/vue-kitchen-sink/src/stories/index.js index cbaea1df5144..c8926b411675 100644 --- a/examples/vue-kitchen-sink/src/stories/index.js +++ b/examples/vue-kitchen-sink/src/stories/index.js @@ -12,6 +12,7 @@ import { select, color, date, + button, } from '@storybook/addon-knobs'; import Centered from '@storybook/addon-centered'; @@ -223,6 +224,8 @@ storiesOf('Addon Knobs', module) : `I'm out of ${fruit}${nice ? ', Sorry!' : '.'}`; const salutation = nice ? 'Nice to meet you!' : 'Leave me alone!'; + button('Arbitrary action', action('You clicked it!')); + return { template: `
From 0c124495598475d49eeebded06f6500c4a9d011e Mon Sep 17 00:00:00 2001 From: Derrick Pelletier Date: Mon, 9 Oct 2017 18:55:04 -0700 Subject: [PATCH 03/32] updated readme.md for button support --- addons/knobs/README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/addons/knobs/README.md b/addons/knobs/README.md index 4c3788d9d0ae..18377c151551 100644 --- a/addons/knobs/README.md +++ b/addons/knobs/README.md @@ -231,6 +231,18 @@ const value = date(label, defaultValue); > Note: the default value must not change - e.g., do not do `date('Label', new Date())` or `date('Label')` +### button + +Allows you to include a button and associated handler. + +```js +import { button } from '@storybook/addon-knobs'; + +const label = 'Do Something'; +const handler = () => doSomething('foobar'); +const value = button(label, handler); +``` + ### withKnobs vs withKnobsOptions If you feel like this addon is not performing well enough there is an option to use `withKnobsOptions` instead of `withKnobs`. From d75fdbde335f5388a762551d5d4f540e4c5ae7eb Mon Sep 17 00:00:00 2001 From: Derrick Pelletier Date: Thu, 12 Oct 2017 00:16:20 -0700 Subject: [PATCH 04/32] removed example assignment to var, does nothing --- 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 18377c151551..8869ab26ef48 100644 --- a/addons/knobs/README.md +++ b/addons/knobs/README.md @@ -240,7 +240,7 @@ import { button } from '@storybook/addon-knobs'; const label = 'Do Something'; const handler = () => doSomething('foobar'); -const value = button(label, handler); +button(label, handler); ``` ### withKnobs vs withKnobsOptions From 2eeece0c2750f681890b48298d78a957624605fe Mon Sep 17 00:00:00 2001 From: Derrick Pelletier Date: Thu, 12 Oct 2017 00:17:52 -0700 Subject: [PATCH 05/32] added onClick methods instead of piggybacking on onChange handlers, more explicit --- addons/knobs/src/components/Panel.js | 15 ++++++++++++--- addons/knobs/src/components/PropField.js | 5 +++-- addons/knobs/src/components/PropForm.js | 2 ++ addons/knobs/src/components/types/Button.js | 7 +++---- addons/knobs/src/react/WrapStory.js | 12 +++++++++--- addons/knobs/src/vue/index.js | 7 +++++++ 6 files changed, 36 insertions(+), 12 deletions(-) diff --git a/addons/knobs/src/components/Panel.js b/addons/knobs/src/components/Panel.js index 15ef94c4f0d6..062f660c23a1 100644 --- a/addons/knobs/src/components/Panel.js +++ b/addons/knobs/src/components/Panel.js @@ -46,6 +46,7 @@ export default class Panel extends React.Component { constructor(props) { super(props); this.handleChange = this.handleChange.bind(this); + this.handleClick = this.handleClick.bind(this); this.setKnobs = this.setKnobs.bind(this); this.reset = this.reset.bind(this); this.setOptions = this.setOptions.bind(this); @@ -90,8 +91,8 @@ export default class Panel extends React.Component { if (!this.loadedFromUrl) { const urlValue = api.getQueryParam(`knob-${name}`); - if (urlValue !== undefined && knob.type !== 'button') { - // If the knob value present in url and type is not a button + if (urlValue !== undefined) { + // If the knob value present in url knob.value = Types[knob.type].deserialize(urlValue); channel.emit('addon:knobs:knobChange', knob); } @@ -133,6 +134,10 @@ export default class Panel extends React.Component { this.setState({ knobs: newKnobs }, this.emitChange(changedKnob)); } + handleClick(knob) { + this.props.channel.emit('addon:knobs:knobClick', knob); + } + render() { const { knobs } = this.state; const knobsArray = Object.keys(knobs) @@ -146,7 +151,11 @@ export default class Panel extends React.Component { return (
- +
); } @@ -67,4 +67,5 @@ PropField.propTypes = { value: PropTypes.any, }).isRequired, onChange: PropTypes.func.isRequired, + onClick: PropTypes.func.isRequired, }; diff --git a/addons/knobs/src/components/PropForm.js b/addons/knobs/src/components/PropForm.js index f645b02354be..39f24fc6eca0 100644 --- a/addons/knobs/src/components/PropForm.js +++ b/addons/knobs/src/components/PropForm.js @@ -46,6 +46,7 @@ export default class propForm extends React.Component { value={knob.value} knob={knob} onChange={changeHandler} + onClick={this.props.onFieldClick} /> ); })} @@ -68,4 +69,5 @@ propForm.propTypes = { }) ), onFieldChange: PropTypes.func.isRequired, + onFieldClick: PropTypes.func.isRequired, }; diff --git a/addons/knobs/src/components/types/Button.js b/addons/knobs/src/components/types/Button.js index 5dbc9b21f1d1..8335cfbab77c 100644 --- a/addons/knobs/src/components/types/Button.js +++ b/addons/knobs/src/components/types/Button.js @@ -7,7 +7,7 @@ const styles = { class ButtonType extends React.Component { render() { - const { knob, onChange } = this.props; + const { knob, onClick } = this.props; return ( @@ -26,14 +26,13 @@ class ButtonType extends React.Component { ButtonType.defaultProps = { knob: {}, - onChange: value => value, }; ButtonType.propTypes = { knob: PropTypes.shape({ name: PropTypes.string, }), - onChange: PropTypes.func, + onClick: PropTypes.func.isRequired, }; ButtonType.serialize = value => value; diff --git a/addons/knobs/src/react/WrapStory.js b/addons/knobs/src/react/WrapStory.js index 36784d2328f8..d3f7652c9678 100644 --- a/addons/knobs/src/react/WrapStory.js +++ b/addons/knobs/src/react/WrapStory.js @@ -7,6 +7,7 @@ export default 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; @@ -16,6 +17,8 @@ export default class WrapStory extends React.Component { 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 @@ -31,6 +34,7 @@ export default class WrapStory extends React.Component { 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); } @@ -46,14 +50,16 @@ export default class WrapStory extends React.Component { // Update the related knob and it's value. const knobOptions = knobStore.get(name); - // if the knob is a button, a change event should call the callback - if (knobOptions.callback) knobOptions.callback(); - knobOptions.value = value; knobStore.markAllUnused(); this.setState({ storyContent: storyFn(context) }); } + knobClicked(knob) { + const knobOptions = this.props.knobStore.get(knob.name); + knobOptions.callback(); + } + resetKnobs() { const { knobStore, storyFn, context } = this.props; knobStore.reset(); diff --git a/addons/knobs/src/vue/index.js b/addons/knobs/src/vue/index.js index 5f6c34cd1e26..d8ebbece6b3f 100644 --- a/addons/knobs/src/vue/index.js +++ b/addons/knobs/src/vue/index.js @@ -16,6 +16,11 @@ export const vueHandler = (channel, knobStore) => getStory => context => ({ this.$forceUpdate(); }, + onKnobClick(knob) { + const knobOptions = knobStore.get(knob.name); + knobOptions.callback(); + }, + onKnobReset() { knobStore.reset(); this.setPaneKnobs(false); @@ -30,12 +35,14 @@ export const vueHandler = (channel, knobStore) => getStory => context => ({ 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); }, }); From 97a6ee1f1790cc1065a2796e357c3ed3720f6231 Mon Sep 17 00:00:00 2001 From: Derrick Pelletier Date: Thu, 12 Oct 2017 00:22:17 -0700 Subject: [PATCH 06/32] removed vue conditional for previous onChange implementation --- addons/knobs/src/vue/index.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/addons/knobs/src/vue/index.js b/addons/knobs/src/vue/index.js index d8ebbece6b3f..a59285819aa5 100644 --- a/addons/knobs/src/vue/index.js +++ b/addons/knobs/src/vue/index.js @@ -9,9 +9,6 @@ export const vueHandler = (channel, knobStore) => getStory => context => ({ // Update the related knob and it's value. const knobOptions = knobStore.get(name); - // if the knob is a button, a change event should call the callback - if (knobOptions.callback) knobOptions.callback(); - knobOptions.value = value; this.$forceUpdate(); }, From c34c4a05cde4c28f95339b334ef2046c6dc4bfec Mon Sep 17 00:00:00 2001 From: Derrick Pelletier Date: Thu, 12 Oct 2017 10:32:10 -0700 Subject: [PATCH 07/32] updated vue test to include new listener --- addons/knobs/src/vue/index.test.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/addons/knobs/src/vue/index.test.js b/addons/knobs/src/vue/index.test.js index dcf2528ce45d..9e2b4ca7a3d3 100644 --- a/addons/knobs/src/vue/index.test.js +++ b/addons/knobs/src/vue/index.test.js @@ -32,8 +32,9 @@ describe('Vue handler', () => { const testStore = new KnobStore(); new Vue(vueHandler(testChannel, testStore)(testStory)(testContext)).$mount(); - expect(testChannel.on).toHaveBeenCalledTimes(2); + 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)); }); }); From 377e812abf2f5058a3550a2e7ce3bcd9ac63b81a Mon Sep 17 00:00:00 2001 From: Derrick Pelletier Date: Tue, 17 Oct 2017 00:31:16 -0700 Subject: [PATCH 08/32] less ridiculous example for button type in cra --- .../cra-kitchen-sink/src/stories/index.js | 28 +++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/examples/cra-kitchen-sink/src/stories/index.js b/examples/cra-kitchen-sink/src/stories/index.js index 9272cfa3a627..b067b63ffa14 100644 --- a/examples/cra-kitchen-sink/src/stories/index.js +++ b/examples/cra-kitchen-sink/src/stories/index.js @@ -1,4 +1,5 @@ import React from 'react'; +import PropTypes from 'prop-types'; import EventEmiter from 'eventemitter3'; import { storiesOf } from '@storybook/react'; @@ -60,6 +61,23 @@ const InfoButton = () => ( ); +class AsyncItemLoader extends React.Component { + constructor() { + super(); + this.state = { items: [] }; + } + + loadItems() { + setTimeout(() => this.setState({ items: ['pencil', 'pen', 'eraser'] }), 1500); + } + + render() { + button('Load the items', () => this.loadItems()); + return this.props.children(this.state.items); + } +} +AsyncItemLoader.propTypes = { children: PropTypes.func.isRequired }; + storiesOf('Button', module) .addDecorator(withKnobs) .add('with text', () => ( @@ -111,8 +129,6 @@ storiesOf('Button', module) const salutation = nice ? 'Nice to meet you!' : 'Leave me alone!'; const dateOptions = { year: 'numeric', month: 'long', day: 'numeric' }; - button('Arbitrary action', action('You clicked it!')); - return (

{intro}

@@ -121,6 +137,14 @@ storiesOf('Button', module)

In my backpack, I have:

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

{salutation}

+
+

PS. My shirt pocket contains:

+ + {loadedItems => { + if (!loadedItems.length) return
  • No items!
  • ; + return
      {loadedItems.map(i =>
    • {i}
    • )}
    ; + }} +
    ); }) From c1eef7da47b0b0ba27f4b06e4362d018ad580e0b Mon Sep 17 00:00:00 2001 From: "Dependencies.io Bot" Date: Tue, 17 Oct 2017 16:23:00 +0000 Subject: [PATCH 09/32] Update babel-preset-env from 1.6.0 to 1.6.1 --- docs/package.json | 2 +- docs/yarn.lock | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+), 1 deletion(-) diff --git a/docs/package.json b/docs/package.json index 7b2bdb99d10a..95bf6e18d1e1 100644 --- a/docs/package.json +++ b/docs/package.json @@ -25,7 +25,7 @@ "babel-core": "^6.26.0", "babel-plugin-transform-runtime": "^6.23.0", "babel-polyfill": "^6.26.0", - "babel-preset-env": "^1.6.0", + "babel-preset-env": "^1.6.1", "babel-preset-react": "^6.24.1", "babel-preset-stage-0": "^6.24.1", "bootstrap": "^3.3.7", diff --git a/docs/yarn.lock b/docs/yarn.lock index dc0f12abc65b..5b2aef3a88ee 100644 --- a/docs/yarn.lock +++ b/docs/yarn.lock @@ -1364,6 +1364,41 @@ babel-preset-env@^1.6.0: invariant "^2.2.2" semver "^5.3.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: + 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 "^2.1.2" + invariant "^2.2.2" + semver "^5.3.0" + babel-preset-es2015@^6.24.1: version "6.24.1" resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" From cd0ddc878755daa93296e276a36086492b6a2c1b Mon Sep 17 00:00:00 2001 From: "Dependencies.io Bot" Date: Tue, 17 Oct 2017 16:25:34 +0000 Subject: [PATCH 10/32] Update babel-preset-env from 1.6.0 to 1.6.1 in / --- package.json | 2 +- yarn.lock | 44 +++++++++++++++++++++++++++++++++++--------- 2 files changed, 36 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 7d2fea5df9b0..2bc2b16f3909 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "babel-plugin-transform-md-import-to-string": "^1.0.6", "babel-plugin-transform-runtime": "^6.23.0", "babel-polyfill": "^6.26.0", - "babel-preset-env": "^1.6.0", + "babel-preset-env": "^1.6.1", "babel-preset-react": "^6.24.1", "babel-preset-stage-0": "^6.24.1", "chalk": "^2.1.0", diff --git a/yarn.lock b/yarn.lock index a0f7ab30b81b..d092800985ad 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1651,6 +1651,41 @@ babel-preset-env@^1.6.0: invariant "^2.2.2" semver "^5.3.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: + 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 "^2.1.2" + 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" @@ -12286,15 +12321,6 @@ webpack-hot-middleware@^2.20.0: querystring "^0.2.0" strip-ansi "^3.0.0" -webpack-hot-middleware@^2.20.0: - version "2.20.0" - resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.20.0.tgz#cb896d837758b6408fe0afeeafdc0e5316b15319" - dependencies: - ansi-html "0.0.7" - html-entities "^1.2.0" - querystring "^0.2.0" - strip-ansi "^3.0.0" - webpack-manifest-plugin@1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-1.2.1.tgz#e02f0846834ce98dca516946ee3ee679745e7db1" From 042b388aba116342f22f64e1f2e0b4700535b09c Mon Sep 17 00:00:00 2001 From: "Dependencies.io Bot" Date: Tue, 17 Oct 2017 16:28:23 +0000 Subject: [PATCH 11/32] Update enzyme-adapter-react-16 from 1.0.1 to 1.0.2 in / --- package.json | 2 +- yarn.lock | 18 +++++------------- 2 files changed, 6 insertions(+), 14 deletions(-) diff --git a/package.json b/package.json index 7d2fea5df9b0..daa2f7b084a4 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,7 @@ "commander": "^2.11.0", "danger": "^1.2.0", "enzyme": "^3.1.0", - "enzyme-adapter-react-16": "^1.0.1", + "enzyme-adapter-react-16": "^1.0.2", "eslint": "^4.9.0", "eslint-config-airbnb": "^15.1.0", "eslint-config-prettier": "^2.4.0", diff --git a/yarn.lock b/yarn.lock index a0f7ab30b81b..ef0a1868d2a3 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3896,15 +3896,16 @@ entities@^1.1.1, entities@~1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" -enzyme-adapter-react-16@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.0.1.tgz#066cb1735e65d8d95841a023f94dab3ce6109e17" +enzyme-adapter-react-16@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.0.2.tgz#8c6f431f17c69e1e9eeb25ca4bd92f31971eb2dd" dependencies: enzyme-adapter-utils "^1.0.0" lodash "^4.17.4" object.assign "^4.0.4" object.values "^1.0.4" prop-types "^15.5.10" + react-test-renderer "^16.0.0-0" enzyme-adapter-utils@^1.0.0: version "1.0.0" @@ -9686,7 +9687,7 @@ react-style-proptype@^3.0.0: dependencies: prop-types "^15.5.4" -react-test-renderer@^16.0.0: +react-test-renderer@^16.0.0, react-test-renderer@^16.0.0-0: version "16.0.0" resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.0.0.tgz#9fe7b8308f2f71f29fc356d4102086f131c9cb15" dependencies: @@ -12286,15 +12287,6 @@ webpack-hot-middleware@^2.20.0: querystring "^0.2.0" strip-ansi "^3.0.0" -webpack-hot-middleware@^2.20.0: - version "2.20.0" - resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.20.0.tgz#cb896d837758b6408fe0afeeafdc0e5316b15319" - dependencies: - ansi-html "0.0.7" - html-entities "^1.2.0" - querystring "^0.2.0" - strip-ansi "^3.0.0" - webpack-manifest-plugin@1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-1.2.1.tgz#e02f0846834ce98dca516946ee3ee679745e7db1" From 5a51fccc1a070b41d9346e1ce99c1f530b65219c Mon Sep 17 00:00:00 2001 From: "Dependencies.io Bot" Date: Tue, 17 Oct 2017 16:30:03 +0000 Subject: [PATCH 12/32] Update @types/node from 7.0.43 to 7.0.44 in addons/knobs --- addons/knobs/package.json | 2 +- yarn.lock | 15 +++------------ 2 files changed, 4 insertions(+), 13 deletions(-) diff --git a/addons/knobs/package.json b/addons/knobs/package.json index 4b7f77ee9f4c..c94cda61c64e 100644 --- a/addons/knobs/package.json +++ b/addons/knobs/package.json @@ -28,7 +28,7 @@ "util-deprecate": "^1.0.2" }, "devDependencies": { - "@types/node": "^7.0.12", + "@types/node": "^7.0.44", "@types/react": "^16.0.11", "git-url-parse": "^6.2.2", "raw-loader": "^0.5.1", diff --git a/yarn.lock b/yarn.lock index a0f7ab30b81b..8f124a09def4 100644 --- a/yarn.lock +++ b/yarn.lock @@ -44,9 +44,9 @@ version "6.0.88" resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.88.tgz#f618f11a944f6a18d92b5c472028728a3e3d4b66" -"@types/node@^7.0.12": - version "7.0.43" - resolved "https://registry.yarnpkg.com/@types/node/-/node-7.0.43.tgz#a187e08495a075f200ca946079c914e1a5fe962c" +"@types/node@^7.0.44": + version "7.0.44" + resolved "https://registry.yarnpkg.com/@types/node/-/node-7.0.44.tgz#20422b3dada536f35bf318ac3e24b8c48200803d" "@types/react@^15.0.24": version "15.6.4" @@ -12286,15 +12286,6 @@ webpack-hot-middleware@^2.20.0: querystring "^0.2.0" strip-ansi "^3.0.0" -webpack-hot-middleware@^2.20.0: - version "2.20.0" - resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.20.0.tgz#cb896d837758b6408fe0afeeafdc0e5316b15319" - dependencies: - ansi-html "0.0.7" - html-entities "^1.2.0" - querystring "^0.2.0" - strip-ansi "^3.0.0" - webpack-manifest-plugin@1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-1.2.1.tgz#e02f0846834ce98dca516946ee3ee679745e7db1" From b14faaacfb9c14929020600217f3bd1380faa9ec Mon Sep 17 00:00:00 2001 From: "Dependencies.io Bot" Date: Tue, 17 Oct 2017 16:31:44 +0000 Subject: [PATCH 13/32] Update @types/react from 16.0.11 to 16.0.13 in addons/knobs --- addons/knobs/package.json | 2 +- yarn.lock | 15 +++------------ 2 files changed, 4 insertions(+), 13 deletions(-) diff --git a/addons/knobs/package.json b/addons/knobs/package.json index 4b7f77ee9f4c..72e8eccf68f2 100644 --- a/addons/knobs/package.json +++ b/addons/knobs/package.json @@ -29,7 +29,7 @@ }, "devDependencies": { "@types/node": "^7.0.12", - "@types/react": "^16.0.11", + "@types/react": "^16.0.13", "git-url-parse": "^6.2.2", "raw-loader": "^0.5.1", "react": "^16.0.0", diff --git a/yarn.lock b/yarn.lock index a0f7ab30b81b..b67e43d03f93 100644 --- a/yarn.lock +++ b/yarn.lock @@ -52,9 +52,9 @@ version "15.6.4" resolved "https://registry.yarnpkg.com/@types/react/-/react-15.6.4.tgz#3bb57bd43183a05919ceb025a264287348f47e9d" -"@types/react@^16.0.11": - version "16.0.11" - resolved "https://registry.yarnpkg.com/@types/react/-/react-16.0.11.tgz#ab505dc60bd1dcd6113577d71d1c96e58b6bd9f0" +"@types/react@^16.0.13": + version "16.0.13" + resolved "https://registry.yarnpkg.com/@types/react/-/react-16.0.13.tgz#973836e6deec10184937322cd10a1605f9de81fc" JSONStream@^1.0.4: version "1.3.1" @@ -12286,15 +12286,6 @@ webpack-hot-middleware@^2.20.0: querystring "^0.2.0" strip-ansi "^3.0.0" -webpack-hot-middleware@^2.20.0: - version "2.20.0" - resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.20.0.tgz#cb896d837758b6408fe0afeeafdc0e5316b15319" - dependencies: - ansi-html "0.0.7" - html-entities "^1.2.0" - querystring "^0.2.0" - strip-ansi "^3.0.0" - webpack-manifest-plugin@1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-1.2.1.tgz#e02f0846834ce98dca516946ee3ee679745e7db1" From 6266522e01f5226aaf58dac129a496d8a3b7e800 Mon Sep 17 00:00:00 2001 From: "Dependencies.io Bot" Date: Tue, 17 Oct 2017 16:33:28 +0000 Subject: [PATCH 14/32] Update babel-preset-env from 1.6.0 to 1.6.1 in app/react-native --- app/react-native/package.json | 2 +- yarn.lock | 44 ++++++++++++++++++++++++++++------- 2 files changed, 36 insertions(+), 10 deletions(-) diff --git a/app/react-native/package.json b/app/react-native/package.json index 545f1fc64d29..f501b239730b 100644 --- a/app/react-native/package.json +++ b/app/react-native/package.json @@ -40,7 +40,7 @@ "babel-plugin-transform-regenerator": "^6.26.0", "babel-plugin-transform-runtime": "^6.23.0", "babel-polyfill": "^6.26.0", - "babel-preset-env": "^1.6.0", + "babel-preset-env": "^1.6.1", "babel-preset-minify": "^0.2.0", "babel-preset-react": "^6.24.1", "babel-preset-stage-0": "^6.24.1", diff --git a/yarn.lock b/yarn.lock index a0f7ab30b81b..d092800985ad 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1651,6 +1651,41 @@ babel-preset-env@^1.6.0: invariant "^2.2.2" semver "^5.3.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: + 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 "^2.1.2" + 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" @@ -12286,15 +12321,6 @@ webpack-hot-middleware@^2.20.0: querystring "^0.2.0" strip-ansi "^3.0.0" -webpack-hot-middleware@^2.20.0: - version "2.20.0" - resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.20.0.tgz#cb896d837758b6408fe0afeeafdc0e5316b15319" - dependencies: - ansi-html "0.0.7" - html-entities "^1.2.0" - querystring "^0.2.0" - strip-ansi "^3.0.0" - webpack-manifest-plugin@1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-1.2.1.tgz#e02f0846834ce98dca516946ee3ee679745e7db1" From bc076b55adce8637ab1bdda729d31d9a0ac584ac Mon Sep 17 00:00:00 2001 From: "Dependencies.io Bot" Date: Tue, 17 Oct 2017 16:35:34 +0000 Subject: [PATCH 15/32] Update webpack from 3.7.1 to 3.8.1 in app/react-native --- app/react-native/package.json | 2 +- yarn.lock | 36 ++++++++++++++++++++++++++--------- 2 files changed, 28 insertions(+), 10 deletions(-) diff --git a/app/react-native/package.json b/app/react-native/package.json index 545f1fc64d29..6f570b094def 100644 --- a/app/react-native/package.json +++ b/app/react-native/package.json @@ -64,7 +64,7 @@ "url-parse": "^1.1.9", "util-deprecate": "^1.0.2", "uuid": "^3.1.0", - "webpack": "^3.7.1", + "webpack": "^3.8.1", "webpack-dev-middleware": "^1.12.0", "webpack-hot-middleware": "^2.20.0", "ws": "^3.0.0" diff --git a/yarn.lock b/yarn.lock index a0f7ab30b81b..670d9c12e2e7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -12286,15 +12286,6 @@ webpack-hot-middleware@^2.20.0: querystring "^0.2.0" strip-ansi "^3.0.0" -webpack-hot-middleware@^2.20.0: - version "2.20.0" - resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.20.0.tgz#cb896d837758b6408fe0afeeafdc0e5316b15319" - dependencies: - ansi-html "0.0.7" - html-entities "^1.2.0" - querystring "^0.2.0" - strip-ansi "^3.0.0" - webpack-manifest-plugin@1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-1.2.1.tgz#e02f0846834ce98dca516946ee3ee679745e7db1" @@ -12390,6 +12381,33 @@ webpack@^3.7.1: webpack-sources "^1.0.1" yargs "^8.0.2" +webpack@^3.8.1: + version "3.8.1" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.8.1.tgz#b16968a81100abe61608b0153c9159ef8bb2bd83" + dependencies: + acorn "^5.0.0" + acorn-dynamic-import "^2.0.0" + ajv "^5.1.5" + ajv-keywords "^2.0.0" + async "^2.1.2" + enhanced-resolve "^3.4.0" + escope "^3.6.0" + interpret "^1.0.0" + json-loader "^0.5.4" + json5 "^0.5.1" + loader-runner "^2.3.0" + loader-utils "^1.1.0" + memory-fs "~0.4.1" + mkdirp "~0.5.0" + node-libs-browser "^2.0.0" + source-map "^0.5.3" + supports-color "^4.2.1" + tapable "^0.2.7" + uglifyjs-webpack-plugin "^0.4.6" + watchpack "^1.4.0" + webpack-sources "^1.0.1" + yargs "^8.0.2" + websocket-driver@>=0.5.1: version "0.7.0" resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.0.tgz#0caf9d2d755d93aee049d4bdd0d3fe2cca2a24eb" From 143c9055033313725558a56cbcb4c5a630244028 Mon Sep 17 00:00:00 2001 From: "Dependencies.io Bot" Date: Tue, 17 Oct 2017 16:38:36 +0000 Subject: [PATCH 16/32] Update babel-preset-env from 1.6.0 to 1.6.1 in app/react --- app/react/package.json | 2 +- yarn.lock | 44 +++++++++++++++++++++++++++++++++--------- 2 files changed, 36 insertions(+), 10 deletions(-) diff --git a/app/react/package.json b/app/react/package.json index 3a34bdef0886..4afd67baa4d5 100644 --- a/app/react/package.json +++ b/app/react/package.json @@ -34,7 +34,7 @@ "babel-plugin-react-docgen": "^1.8.0", "babel-plugin-transform-regenerator": "^6.26.0", "babel-plugin-transform-runtime": "^6.23.0", - "babel-preset-env": "^1.6.0", + "babel-preset-env": "^1.6.1", "babel-preset-minify": "^0.2.0", "babel-preset-react": "^6.24.1", "babel-preset-react-app": "^3.0.3", diff --git a/yarn.lock b/yarn.lock index a0f7ab30b81b..d092800985ad 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1651,6 +1651,41 @@ babel-preset-env@^1.6.0: invariant "^2.2.2" semver "^5.3.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: + 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 "^2.1.2" + 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" @@ -12286,15 +12321,6 @@ webpack-hot-middleware@^2.20.0: querystring "^0.2.0" strip-ansi "^3.0.0" -webpack-hot-middleware@^2.20.0: - version "2.20.0" - resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.20.0.tgz#cb896d837758b6408fe0afeeafdc0e5316b15319" - dependencies: - ansi-html "0.0.7" - html-entities "^1.2.0" - querystring "^0.2.0" - strip-ansi "^3.0.0" - webpack-manifest-plugin@1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-1.2.1.tgz#e02f0846834ce98dca516946ee3ee679745e7db1" From 4d1c260ac427f5728919964e4c37cb5429489e6a Mon Sep 17 00:00:00 2001 From: "Dependencies.io Bot" Date: Tue, 17 Oct 2017 16:40:42 +0000 Subject: [PATCH 17/32] Update webpack from 3.7.1 to 3.8.1 in app/react --- app/react/package.json | 2 +- yarn.lock | 36 +++++++++++++++++++++++++++--------- 2 files changed, 28 insertions(+), 10 deletions(-) diff --git a/app/react/package.json b/app/react/package.json index 3a34bdef0886..fb84b5c47a3c 100644 --- a/app/react/package.json +++ b/app/react/package.json @@ -71,7 +71,7 @@ "url-loader": "^0.6.2", "util-deprecate": "^1.0.2", "uuid": "^3.1.0", - "webpack": "^3.7.1", + "webpack": "^3.8.1", "webpack-dev-middleware": "^1.12.0", "webpack-hot-middleware": "^2.20.0" }, diff --git a/yarn.lock b/yarn.lock index a0f7ab30b81b..670d9c12e2e7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -12286,15 +12286,6 @@ webpack-hot-middleware@^2.20.0: querystring "^0.2.0" strip-ansi "^3.0.0" -webpack-hot-middleware@^2.20.0: - version "2.20.0" - resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.20.0.tgz#cb896d837758b6408fe0afeeafdc0e5316b15319" - dependencies: - ansi-html "0.0.7" - html-entities "^1.2.0" - querystring "^0.2.0" - strip-ansi "^3.0.0" - webpack-manifest-plugin@1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-1.2.1.tgz#e02f0846834ce98dca516946ee3ee679745e7db1" @@ -12390,6 +12381,33 @@ webpack@^3.7.1: webpack-sources "^1.0.1" yargs "^8.0.2" +webpack@^3.8.1: + version "3.8.1" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.8.1.tgz#b16968a81100abe61608b0153c9159ef8bb2bd83" + dependencies: + acorn "^5.0.0" + acorn-dynamic-import "^2.0.0" + ajv "^5.1.5" + ajv-keywords "^2.0.0" + async "^2.1.2" + enhanced-resolve "^3.4.0" + escope "^3.6.0" + interpret "^1.0.0" + json-loader "^0.5.4" + json5 "^0.5.1" + loader-runner "^2.3.0" + loader-utils "^1.1.0" + memory-fs "~0.4.1" + mkdirp "~0.5.0" + node-libs-browser "^2.0.0" + source-map "^0.5.3" + supports-color "^4.2.1" + tapable "^0.2.7" + uglifyjs-webpack-plugin "^0.4.6" + watchpack "^1.4.0" + webpack-sources "^1.0.1" + yargs "^8.0.2" + websocket-driver@>=0.5.1: version "0.7.0" resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.0.tgz#0caf9d2d755d93aee049d4bdd0d3fe2cca2a24eb" From ad97eb0b860cc544de4ba37149d8afb071c8823b Mon Sep 17 00:00:00 2001 From: Derrick Pelletier Date: Tue, 17 Oct 2017 10:05:26 -0700 Subject: [PATCH 18/32] updated snapshot for my new dom elements --- .../src/__snapshots__/storyshots.test.js.snap | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/examples/cra-kitchen-sink/src/__snapshots__/storyshots.test.js.snap b/examples/cra-kitchen-sink/src/__snapshots__/storyshots.test.js.snap index 61ad984c0719..ffe4f769c193 100644 --- a/examples/cra-kitchen-sink/src/__snapshots__/storyshots.test.js.snap +++ b/examples/cra-kitchen-sink/src/__snapshots__/storyshots.test.js.snap @@ -1318,6 +1318,13 @@ exports[`Storyshots Button with knobs 1`] = `

    Nice to meet you!

    +
    +

    + PS. My shirt pocket contains: +

    +
  • + No items! +
  • `; From 5e2646986444d3782ce1f4e741f06cf6605f30cc Mon Sep 17 00:00:00 2001 From: hypnos Date: Wed, 18 Oct 2017 01:00:04 +0300 Subject: [PATCH 19/32] Merge --- addons/knobs/package.json | 4 ++-- yarn.lock | 21 ++++++--------------- 2 files changed, 8 insertions(+), 17 deletions(-) diff --git a/addons/knobs/package.json b/addons/knobs/package.json index 4b7f77ee9f4c..b569fc482418 100644 --- a/addons/knobs/package.json +++ b/addons/knobs/package.json @@ -28,8 +28,8 @@ "util-deprecate": "^1.0.2" }, "devDependencies": { - "@types/node": "^7.0.12", - "@types/react": "^16.0.11", + "@types/node": "^7.0.44", + "@types/react": "^16.0.13", "git-url-parse": "^6.2.2", "raw-loader": "^0.5.1", "react": "^16.0.0", diff --git a/yarn.lock b/yarn.lock index a0f7ab30b81b..0cd9a6acd4d0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -44,17 +44,17 @@ version "6.0.88" resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.88.tgz#f618f11a944f6a18d92b5c472028728a3e3d4b66" -"@types/node@^7.0.12": - version "7.0.43" - resolved "https://registry.yarnpkg.com/@types/node/-/node-7.0.43.tgz#a187e08495a075f200ca946079c914e1a5fe962c" +"@types/node@^7.0.44": + version "7.0.44" + resolved "https://registry.yarnpkg.com/@types/node/-/node-7.0.44.tgz#20422b3dada536f35bf318ac3e24b8c48200803d" "@types/react@^15.0.24": version "15.6.4" resolved "https://registry.yarnpkg.com/@types/react/-/react-15.6.4.tgz#3bb57bd43183a05919ceb025a264287348f47e9d" -"@types/react@^16.0.11": - version "16.0.11" - resolved "https://registry.yarnpkg.com/@types/react/-/react-16.0.11.tgz#ab505dc60bd1dcd6113577d71d1c96e58b6bd9f0" +"@types/react@^16.0.13": + version "16.0.13" + resolved "https://registry.yarnpkg.com/@types/react/-/react-16.0.13.tgz#973836e6deec10184937322cd10a1605f9de81fc" JSONStream@^1.0.4: version "1.3.1" @@ -12286,15 +12286,6 @@ webpack-hot-middleware@^2.20.0: querystring "^0.2.0" strip-ansi "^3.0.0" -webpack-hot-middleware@^2.20.0: - version "2.20.0" - resolved "https://registry.yarnpkg.com/webpack-hot-middleware/-/webpack-hot-middleware-2.20.0.tgz#cb896d837758b6408fe0afeeafdc0e5316b15319" - dependencies: - ansi-html "0.0.7" - html-entities "^1.2.0" - querystring "^0.2.0" - strip-ansi "^3.0.0" - webpack-manifest-plugin@1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-1.2.1.tgz#e02f0846834ce98dca516946ee3ee679745e7db1" From 7849fa5682c2137d9690ef31e97136b8d5df232a Mon Sep 17 00:00:00 2001 From: hypnos Date: Wed, 18 Oct 2017 01:06:05 +0300 Subject: [PATCH 20/32] Update lockfile --- yarn.lock | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/yarn.lock b/yarn.lock index ff100ef277ea..fa1c9698ed14 100644 --- a/yarn.lock +++ b/yarn.lock @@ -12389,33 +12389,6 @@ webpack@^3.6.0: webpack-sources "^1.0.1" yargs "^8.0.2" -webpack@^3.7.1: - version "3.7.1" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.7.1.tgz#6046b5c415ff7df7a0dc54c5b6b86098e8b952da" - dependencies: - acorn "^5.0.0" - acorn-dynamic-import "^2.0.0" - ajv "^5.1.5" - ajv-keywords "^2.0.0" - async "^2.1.2" - enhanced-resolve "^3.4.0" - escope "^3.6.0" - interpret "^1.0.0" - json-loader "^0.5.4" - json5 "^0.5.1" - loader-runner "^2.3.0" - loader-utils "^1.1.0" - memory-fs "~0.4.1" - mkdirp "~0.5.0" - node-libs-browser "^2.0.0" - source-map "^0.5.3" - supports-color "^4.2.1" - tapable "^0.2.7" - uglifyjs-webpack-plugin "^0.4.6" - watchpack "^1.4.0" - webpack-sources "^1.0.1" - yargs "^8.0.2" - webpack@^3.8.1: version "3.8.1" resolved "https://registry.yarnpkg.com/webpack/-/webpack-3.8.1.tgz#b16968a81100abe61608b0153c9159ef8bb2bd83" From 3c480ef3f38482906bb9186d190b9c13d687cf0d Mon Sep 17 00:00:00 2001 From: "Dependencies.io Bot" Date: Wed, 18 Oct 2017 16:27:44 +0000 Subject: [PATCH 21/32] Update chalk from 2.1.0 to 2.2.0 in / --- package.json | 2 +- yarn.lock | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 059398267f1c..3f9e85e57206 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,7 @@ "babel-preset-env": "^1.6.1", "babel-preset-react": "^6.24.1", "babel-preset-stage-0": "^6.24.1", - "chalk": "^2.1.0", + "chalk": "^2.2.0", "codecov": "^2.3.1", "commander": "^2.11.0", "danger": "^1.2.0", diff --git a/yarn.lock b/yarn.lock index f0ab1ff2c0f4..a8f26ed99353 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2506,6 +2506,14 @@ chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0: escape-string-regexp "^1.0.5" supports-color "^4.0.0" +chalk@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.2.0.tgz#477b3bf2f9b8fd5ca9e429747e37f724ee7af240" + dependencies: + ansi-styles "^3.1.0" + escape-string-regexp "^1.0.5" + supports-color "^4.0.0" + chalk@~0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" From e1d10b2a8210b8a04ee2289a77f34f6c0c0042b6 Mon Sep 17 00:00:00 2001 From: "Dependencies.io Bot" Date: Wed, 18 Oct 2017 16:30:47 +0000 Subject: [PATCH 22/32] Update lint-staged from 4.2.3 to 4.3.0 in / --- package.json | 2 +- yarn.lock | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 059398267f1c..1837bac6442d 100644 --- a/package.json +++ b/package.json @@ -71,7 +71,7 @@ "jest": "^21.2.0", "jest-enzyme": "^4.0.1", "lerna": "^2.4.0", - "lint-staged": "^4.1.0", + "lint-staged": "^4.3.0", "lodash": "^4.17.4", "nodemon": "^1.12.1", "npmlog": "^4.1.2", diff --git a/yarn.lock b/yarn.lock index f0ab1ff2c0f4..8f5931232354 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7233,12 +7233,13 @@ levn@^0.3.0, levn@~0.3.0: prelude-ls "~1.1.2" type-check "~0.3.2" -lint-staged@^4.1.0: - version "4.2.3" - resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-4.2.3.tgz#5a1f12256af06110b96225f109dbf215009a37a9" +lint-staged@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-4.3.0.tgz#ed0779ad9a42c0dc62bb3244e522870b41125879" dependencies: app-root-path "^2.0.0" chalk "^2.1.0" + commander "^2.11.0" cosmiconfig "^1.1.0" execa "^0.8.0" is-glob "^4.0.0" From b3f57783d5e120d2a9eb80bd61383b9ff95f280c Mon Sep 17 00:00:00 2001 From: "Dependencies.io Bot" Date: Wed, 18 Oct 2017 16:32:34 +0000 Subject: [PATCH 23/32] Update chalk from 2.1.0 to 2.2.0 in lib/cli --- lib/cli/package.json | 2 +- yarn.lock | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/cli/package.json b/lib/cli/package.json index 96033e021f3c..20fb6de2096d 100644 --- a/lib/cli/package.json +++ b/lib/cli/package.json @@ -22,7 +22,7 @@ }, "dependencies": { "@storybook/codemod": "^3.2.12", - "chalk": "^2.1.0", + "chalk": "^2.2.0", "child-process-promise": "^2.2.1", "commander": "^2.11.0", "cross-spawn": "^5.0.1", diff --git a/yarn.lock b/yarn.lock index f0ab1ff2c0f4..a8f26ed99353 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2506,6 +2506,14 @@ chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0: escape-string-regexp "^1.0.5" supports-color "^4.0.0" +chalk@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.2.0.tgz#477b3bf2f9b8fd5ca9e429747e37f724ee7af240" + dependencies: + ansi-styles "^3.1.0" + escape-string-regexp "^1.0.5" + supports-color "^4.0.0" + chalk@~0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" From 3a22ef960a8a6bf18ff7bead6e9419834216c831 Mon Sep 17 00:00:00 2001 From: "Dependencies.io Bot" Date: Wed, 18 Oct 2017 16:34:22 +0000 Subject: [PATCH 24/32] Update @storybook/react-fuzzy from 0.4.0 to 0.4.1 in lib/ui --- lib/ui/package.json | 2 +- yarn.lock | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/ui/package.json b/lib/ui/package.json index 36819df84c42..138c80f97eb1 100644 --- a/lib/ui/package.json +++ b/lib/ui/package.json @@ -16,7 +16,7 @@ "dependencies": { "@hypnosphi/fuse.js": "^3.0.9", "@storybook/components": "^3.2.12", - "@storybook/react-fuzzy": "^0.4.0", + "@storybook/react-fuzzy": "^0.4.1", "babel-runtime": "^6.26.0", "deep-equal": "^1.0.1", "events": "^1.1.1", diff --git a/yarn.lock b/yarn.lock index f0ab1ff2c0f4..b1a2e5170637 100644 --- a/yarn.lock +++ b/yarn.lock @@ -21,9 +21,9 @@ git-url-parse "^6.0.2" shelljs "^0.7.0" -"@storybook/react-fuzzy@^0.4.0": - version "0.4.0" - resolved "https://registry.yarnpkg.com/@storybook/react-fuzzy/-/react-fuzzy-0.4.0.tgz#2961e8a1f6c1afcce97e9e9a14d1dfe9d9061087" +"@storybook/react-fuzzy@^0.4.1": + version "0.4.1" + resolved "https://registry.yarnpkg.com/@storybook/react-fuzzy/-/react-fuzzy-0.4.1.tgz#612bdf7768585ad6e086b4738efbf204e94290a0" dependencies: babel-runtime "^6.23.0" classnames "^2.2.5" From 9a559a16ece491e0ca142a5fcd8acc3a4a6aedf7 Mon Sep 17 00:00:00 2001 From: "Dependencies.io Bot" Date: Wed, 18 Oct 2017 16:36:01 +0000 Subject: [PATCH 25/32] Update chalk from 2.1.0 to 2.2.0 in app/react --- app/react/package.json | 2 +- yarn.lock | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/app/react/package.json b/app/react/package.json index 8783b4e63edd..db703e1c42c6 100644 --- a/app/react/package.json +++ b/app/react/package.json @@ -41,7 +41,7 @@ "babel-preset-stage-0": "^6.24.1", "babel-runtime": "^6.26.0", "case-sensitive-paths-webpack-plugin": "^2.1.1", - "chalk": "^2.1.0", + "chalk": "^2.2.0", "commander": "^2.11.0", "common-tags": "^1.4.0", "configstore": "^3.1.1", diff --git a/yarn.lock b/yarn.lock index f0ab1ff2c0f4..a8f26ed99353 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2506,6 +2506,14 @@ chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0: escape-string-regexp "^1.0.5" supports-color "^4.0.0" +chalk@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.2.0.tgz#477b3bf2f9b8fd5ca9e429747e37f724ee7af240" + dependencies: + ansi-styles "^3.1.0" + escape-string-regexp "^1.0.5" + supports-color "^4.0.0" + chalk@~0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" From 521b738e60d8e942764b65f31821b33b214fa85b Mon Sep 17 00:00:00 2001 From: "Dependencies.io Bot" Date: Wed, 18 Oct 2017 16:37:41 +0000 Subject: [PATCH 26/32] Update chalk from 2.1.0 to 2.2.0 in app/vue --- app/vue/package.json | 2 +- yarn.lock | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/app/vue/package.json b/app/vue/package.json index 7ee911b283c2..0eb13bad3026 100644 --- a/app/vue/package.json +++ b/app/vue/package.json @@ -41,7 +41,7 @@ "babel-preset-stage-0": "^6.24.1", "babel-runtime": "^6.26.0", "case-sensitive-paths-webpack-plugin": "^2.1.1", - "chalk": "^2.1.0", + "chalk": "^2.2.0", "commander": "^2.11.0", "common-tags": "^1.4.0", "configstore": "^3.1.1", diff --git a/yarn.lock b/yarn.lock index f0ab1ff2c0f4..a8f26ed99353 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2506,6 +2506,14 @@ chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0: escape-string-regexp "^1.0.5" supports-color "^4.0.0" +chalk@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.2.0.tgz#477b3bf2f9b8fd5ca9e429747e37f724ee7af240" + dependencies: + ansi-styles "^3.1.0" + escape-string-regexp "^1.0.5" + supports-color "^4.0.0" + chalk@~0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" From 9ade0664d145096512e4e0c480c08ccb8f2f3a97 Mon Sep 17 00:00:00 2001 From: hypnos Date: Thu, 19 Oct 2017 00:51:05 +0300 Subject: [PATCH 27/32] Enable batch mode for dependencies.io --- dependencies.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dependencies.yml b/dependencies.yml index 3520b7e252cb..bd6995784eac 100644 --- a/dependencies.yml +++ b/dependencies.yml @@ -29,9 +29,10 @@ collectors: bootstrap_command: yarn actors: # pull requests for updates to our major version - - type: js-lerna + - type: js-lerna:0.9.0-beta versions: "L.Y.Y" settings: + batch_mode: true bootstrap_command: yarn github_labels: - dependencies:update From f3017896f342e49222436af5645f5df5f01370ba Mon Sep 17 00:00:00 2001 From: "Dependencies.io Bot" Date: Thu, 19 Oct 2017 05:21:40 +0000 Subject: [PATCH 28/32] Update @types/node from 7.0.44 to 7.0.46 in addons/knobs --- addons/knobs/package.json | 2 +- yarn.lock | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/addons/knobs/package.json b/addons/knobs/package.json index b569fc482418..fb82acfd553c 100644 --- a/addons/knobs/package.json +++ b/addons/knobs/package.json @@ -28,7 +28,7 @@ "util-deprecate": "^1.0.2" }, "devDependencies": { - "@types/node": "^7.0.44", + "@types/node": "^7.0.46", "@types/react": "^16.0.13", "git-url-parse": "^6.2.2", "raw-loader": "^0.5.1", diff --git a/yarn.lock b/yarn.lock index 10098556469e..ea443cab06c6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -44,9 +44,9 @@ version "6.0.88" resolved "https://registry.yarnpkg.com/@types/node/-/node-6.0.88.tgz#f618f11a944f6a18d92b5c472028728a3e3d4b66" -"@types/node@^7.0.44": - version "7.0.44" - resolved "https://registry.yarnpkg.com/@types/node/-/node-7.0.44.tgz#20422b3dada536f35bf318ac3e24b8c48200803d" +"@types/node@^7.0.46": + version "7.0.46" + resolved "https://registry.yarnpkg.com/@types/node/-/node-7.0.46.tgz#c3dedd25558c676b3d6303e51799abb9c3f8f314" "@types/react@^15.0.24": version "15.6.4" From 97cdb9365d2b00847511a79341517346627cbca8 Mon Sep 17 00:00:00 2001 From: "Dependencies.io Bot" Date: Thu, 19 Oct 2017 05:22:58 +0000 Subject: [PATCH 29/32] Update @types/react from 16.0.13 to 16.0.14 in addons/knobs --- addons/knobs/package.json | 2 +- yarn.lock | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/addons/knobs/package.json b/addons/knobs/package.json index fb82acfd553c..1b4f54673ce0 100644 --- a/addons/knobs/package.json +++ b/addons/knobs/package.json @@ -29,7 +29,7 @@ }, "devDependencies": { "@types/node": "^7.0.46", - "@types/react": "^16.0.13", + "@types/react": "^16.0.14", "git-url-parse": "^6.2.2", "raw-loader": "^0.5.1", "react": "^16.0.0", diff --git a/yarn.lock b/yarn.lock index ea443cab06c6..c773c8ef4735 100644 --- a/yarn.lock +++ b/yarn.lock @@ -52,9 +52,9 @@ version "15.6.4" resolved "https://registry.yarnpkg.com/@types/react/-/react-15.6.4.tgz#3bb57bd43183a05919ceb025a264287348f47e9d" -"@types/react@^16.0.13": - version "16.0.13" - resolved "https://registry.yarnpkg.com/@types/react/-/react-16.0.13.tgz#973836e6deec10184937322cd10a1605f9de81fc" +"@types/react@^16.0.14": + version "16.0.14" + resolved "https://registry.yarnpkg.com/@types/react/-/react-16.0.14.tgz#c46d92be936820a93a14ffc84ad805e83f6535ef" JSONStream@^1.0.4: version "1.3.1" From fe493cd4cf669c6d6ca7456c2f27975643cb3a45 Mon Sep 17 00:00:00 2001 From: "Dependencies.io Bot" Date: Thu, 19 Oct 2017 16:25:10 +0000 Subject: [PATCH 30/32] Update eslint-plugin-import from 2.7.0 to 2.8.0 in / --- package.json | 2 +- yarn.lock | 17 ++++++++++++++++- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 11d02077b54b..57634c6f8934 100644 --- a/package.json +++ b/package.json @@ -56,7 +56,7 @@ "eslint": "^4.9.0", "eslint-config-airbnb": "^15.1.0", "eslint-config-prettier": "^2.4.0", - "eslint-plugin-import": "^2.7.0", + "eslint-plugin-import": "^2.8.0", "eslint-plugin-jest": "^21.0.0", "eslint-plugin-json": "^1.2.0", "eslint-plugin-jsx-a11y": "^6.0.2", diff --git a/yarn.lock b/yarn.lock index c773c8ef4735..2eff24144257 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4174,7 +4174,7 @@ eslint-plugin-flowtype@2.35.0: dependencies: lodash "^4.15.0" -eslint-plugin-import@2.7.0, eslint-plugin-import@^2.7.0: +eslint-plugin-import@2.7.0: version "2.7.0" resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.7.0.tgz#21de33380b9efb55f5ef6d2e210ec0e07e7fa69f" dependencies: @@ -4189,6 +4189,21 @@ eslint-plugin-import@2.7.0, eslint-plugin-import@^2.7.0: minimatch "^3.0.3" read-pkg-up "^2.0.0" +eslint-plugin-import@^2.8.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.8.0.tgz#fa1b6ef31fcb3c501c09859c1b86f1fc5b986894" + dependencies: + builtin-modules "^1.1.1" + contains-path "^0.1.0" + debug "^2.6.8" + doctrine "1.5.0" + eslint-import-resolver-node "^0.3.1" + eslint-module-utils "^2.1.1" + has "^1.0.1" + lodash.cond "^4.3.0" + minimatch "^3.0.3" + read-pkg-up "^2.0.0" + eslint-plugin-jest@^21.0.0: version "21.2.0" resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-21.2.0.tgz#292044df9cf0866ad9c530e78e6528fae287b926" From eb4a9212ea3b180c5cef04cd760bc8b499674f70 Mon Sep 17 00:00:00 2001 From: "Dependencies.io Bot" Date: Thu, 19 Oct 2017 16:26:23 +0000 Subject: [PATCH 31/32] Update @types/react from 16.0.14 to 16.0.15 in addons/knobs --- addons/knobs/package.json | 2 +- yarn.lock | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/addons/knobs/package.json b/addons/knobs/package.json index 1b4f54673ce0..03f065699eb0 100644 --- a/addons/knobs/package.json +++ b/addons/knobs/package.json @@ -29,7 +29,7 @@ }, "devDependencies": { "@types/node": "^7.0.46", - "@types/react": "^16.0.14", + "@types/react": "^16.0.15", "git-url-parse": "^6.2.2", "raw-loader": "^0.5.1", "react": "^16.0.0", diff --git a/yarn.lock b/yarn.lock index 2eff24144257..d3dbf8208517 100644 --- a/yarn.lock +++ b/yarn.lock @@ -52,9 +52,9 @@ version "15.6.4" resolved "https://registry.yarnpkg.com/@types/react/-/react-15.6.4.tgz#3bb57bd43183a05919ceb025a264287348f47e9d" -"@types/react@^16.0.14": - version "16.0.14" - resolved "https://registry.yarnpkg.com/@types/react/-/react-16.0.14.tgz#c46d92be936820a93a14ffc84ad805e83f6535ef" +"@types/react@^16.0.15": + version "16.0.15" + resolved "https://registry.yarnpkg.com/@types/react/-/react-16.0.15.tgz#1b1eba408fc75735b3e53a83333c346eeeb0022b" JSONStream@^1.0.4: version "1.3.1" From 71362056a2ee128c78c8b4ec182bfc0d8fdddcf8 Mon Sep 17 00:00:00 2001 From: Abraham Date: Thu, 19 Oct 2017 17:51:44 -0500 Subject: [PATCH 32/32] Typo Fixed typo on line 83 `shoun` -> `shown` --- addons/info/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/info/README.md b/addons/info/README.md index e6504e7da09b..c3fdf1c69d2a 100644 --- a/addons/info/README.md +++ b/addons/info/README.md @@ -80,7 +80,7 @@ setDefaults({ inline: true, // Displays info inline vs click button to view source: true, // Displays the source of story Component propTables: [/* Components used in story */], // displays Prop Tables with this components - propTablesExclude: [], // Exclude Components from being shoun in Prop Tables section + propTablesExclude: [], // Exclude Components from being shown in Prop Tables section styles: {}, // Overrides styles of addon marksyConf: {}, // Overrides components used to display markdown. Warning! This option's name will be likely deprecated in favor to "components" with the same API in 3.3 release. Follow this PR #1501 for details maxPropsIntoLine: 1, // Max props to display per line in source code