1992 Commits

Author SHA1 Message Date
Hypnosphi
73dc63bb67 Update dependencies 2018-06-20 13:50:17 +03:00
Hypnosphi
113c182de2 Merge master 2018-06-16 20:25:47 +03:00
igor-dv
34a4a080a8 Merge remote-tracking branch 'origin/master' into storyshots-remove-require-context 2018-06-16 16:46:14 +03:00
Hypnosphi
b169f1374d Update storyshots 2018-06-16 16:40:53 +03:00
Filipp Riabchun
12b41f1caf
Merge pull request #3735 from sam-at-work/fix-centered-addon-ie11
Fix centered addon for IE11
2018-06-16 15:23:14 +03:00
Filipp Riabchun
4808e01969
Merge pull request #3749 from mizx/master
Updated addon docs, removed deprecated Viewport component
2018-06-16 15:09:51 +03:00
John Schulz
be6791693c
Display functions as variables not invocations
Given this story

```jsx
import { storiesOf } from '@storybook/react'
import { action } from '@storybook/addon-actions'
import Component from '.'

const logClick = action('clicked')

storiesOf('Component', module)
  .add('plain', () =>
    <Component onClick={logClick}>Hello Button</Component>
  )
```

the add-on currently displays

```jsx
<Component onClick={logClick()}>Hello Button</Component>
```

which isn't accurate and makes the "copy" feature less useful. This PR will output:

```jsx
<Component onClick={logClick}>Hello Button</Component>
```

which matches the story
2018-06-13 18:03:43 -07:00
Sam Grace
500f2db096 Fix centered addon for IE11 2018-06-13 12:13:58 +01:00
igor-dv
9ccbb5d5fa Improve READMEs 2018-06-13 09:27:30 +03:00
igor-dv
251eb0dd6c Add docs to README.md and MIGRATION.md 2018-06-13 01:47:16 +03:00
igor-dv
a967f8160f Extract ensureOptionsDefaults 2018-06-13 01:09:51 +03:00
igor-dv
2a992bac2e Replace require_context.js with babel-plugin-require-context-hook 2018-06-12 21:50:13 +03:00
Igor
86f37ebb14
Merge pull request #3747 from storybooks/storyshots-advanced-config
Storyshots advanced config options
2018-06-12 21:35:46 +03:00
igor-dv
3063a776d7 MIGRATION.md and README.md improvements 2018-06-12 17:03:22 +03:00
igor-dv
1a9a227a40 Merge remote-tracking branch 'origin/storyshots-refactoring' into storyshots-advanced-config 2018-06-11 23:45:19 +03:00
igor-dv
f45a3cce7f Merge remote-tracking branch 'origin/master' into storyshots-refactoring 2018-06-11 22:59:17 +03:00
Cody
1b598901ab removed deprecated Viewport component 2018-06-11 01:57:01 -07:00
Cody
dc34fc6faf added missing text prop 2018-06-11 01:56:27 -07:00
Cody
4a4975ca95 fixed typos in addons-actions 2018-06-11 01:56:16 -07:00
igor-dv
f04b952d70 Ignore global require 2018-06-11 09:31:22 +03:00
igor-dv
0c98009520 Add custom config implementation + allow configPath to point on config.js file 2018-06-11 02:51:24 +03:00
igor-dv
6644743ce3 Fix README.md 2018-06-10 23:59:25 +03:00
igor-dv
fce815a371 Add docs for the stories2snapsConverters 2018-06-10 23:57:10 +03:00
igor-dv
0fbb935ee1 Move appOptions imports to the load methods 2018-06-10 22:52:35 +03:00
Filipp Riabchun
21911319b0
Merge pull request #3741 from pascalduez/hotfix/addon-info-readme
[documentation] Update and fix addon-info options documentation
2018-06-10 22:18:11 +03:00
igor-dv
52ef4c4fd3 Import framework loaders dynamically 2018-06-10 20:05:52 +03:00
igor-dv
36d6a9c69f Change "export * from x" to manually importing and exporting named exports. 2018-06-10 19:59:11 +03:00
igor-dv
120af7cedb Few minor cleanups 2018-06-10 19:31:37 +03:00
igor-dv
19b269eb01 WIP restructuring 2018-06-10 19:28:30 +03:00
igor-dv
e46dada83c Create and expose Stories2SnapsConverter to support customization of the snapshot files + extract api to a separate dir structure 2018-06-10 19:13:11 +03:00
igor-dv
9368287043 Common storyshots README.md improvements 2018-06-10 16:43:58 +03:00
igor-dv
a87798b2dc Common storyshots README.md improvements 2018-06-10 16:42:39 +03:00
igor-dv
e319885ff0 Merge remote-tracking branch 'origin/master' into storyshots-separation
# Conflicts:
#	addons/storyshots/storyshots-core/package.json
#	examples/official-storybook/package.json
2018-06-10 14:51:06 +03:00
igor-dv
77998b803f minor 2018-06-10 14:38:38 +03:00
igor-dv
0478125ae3 Extract imageSnapshots to a separate package 2018-06-10 14:34:45 +03:00
Pascal Duez
6e3f8d3618 Update and fix addon-info options documentation 2018-06-10 12:52:54 +02:00
Michael Shilman
1a03042590 v4.0.0-alpha.9 2018-06-10 15:42:04 +08:00
Filipp Riabchun
4a250fb7da
Merge pull request #3697 from Keraito/info-params
Use parameters for info addon
2018-06-09 20:40:34 +02:00
Keraito
5738a8ecaa Update snapshots 2018-06-08 11:21:31 +02:00
Filipp Riabchun
aea6f48300
Merge pull request #3731 from Keraito/notes-md-table
Remove linebreaks in notes text when it are html elements
2018-06-08 08:29:29 +02:00
Filipp Riabchun
ed430d06e5
Merge pull request #3717 from storybooks/storyshots-remove-deprecations
[Storyshots] Remove deprecated props from storyshots
2018-06-08 08:28:01 +02:00
Filipp Riabchun
bb3c5bf781
Merge branch 'master' into info-params 2018-06-08 08:20:53 +02:00
Keraito
ddc4e71fc2 Remove linebreaks in notes text when it are html elements 2018-06-07 15:43:50 +02:00
Phill Duffy
7766d1c345
Update ReadMe.md
small typos I noticed, not an exhaustive check.
2018-06-06 21:58:04 +01:00
igor-dv
d3f2c72e53 Merge remote-tracking branch 'origin/master' into storyshots-remove-deprecations 2018-06-06 10:19:15 +03:00
Hypnosphi
aebf1316a8 Fix eslint warnings 2018-06-06 01:07:46 +02:00
igor-dv
b1e6c6d88d Fix tests 2018-06-05 23:23:20 +03:00
igor-dv
991e817252 Remove "deprecations" from storyshots 2018-06-05 22:34:53 +03:00
Keraito
f1ae4eae48 Document disable flag 2018-06-05 16:45:04 +02:00
Keraito
837cfbe43e Deprecate setDefaults 2018-06-05 16:09:53 +02:00