3242 Commits

Author SHA1 Message Date
jh3y
cd0b4cc26b docs: update code snippets for writing an addon 2021-04-12 20:03:11 +01:00
Michael Shilman
7e948aaaed 6.3.0-alpha.5 next.json version file 2021-04-11 23:53:40 +08:00
Michael Shilman
9e3fce549f 6.3.0-alpha.4 next.json version file 2021-04-10 20:57:43 +08:00
Michael Shilman
3ec358f71c
Merge pull request #14472 from eirslett/dont-shadow-window
Core: Don't shadow the window global variable
2021-04-10 20:30:06 +08:00
Michael Shilman
303c8a60ba 6.3.0-alpha.3 next.json version file 2021-04-10 12:47:02 +08:00
Michael Shilman
316b500adb
Merge branch 'next' into dont-shadow-window 2021-04-10 12:09:28 +08:00
Kristian Randall
b8ed01ff76 Add wildcard example to the docs 2021-04-09 17:58:58 +07:00
Michael Shilman
47929fc493 6.3.0-alpha.2 next.json version file 2021-04-09 13:17:42 +08:00
Michael Shilman
ff7c206381 6.3.0-alpha.1 next.json version file 2021-04-09 00:36:07 +08:00
Michael Shilman
18c27b4cd7 6.3.0-alpha.0 next.json version file 2021-04-08 18:05:21 +08:00
Michael Shilman
01d3f8f63c 6.2.5 latest.json version file 2021-04-07 18:50:55 +08:00
Michael Shilman
d0100588c9 Merge branch 'next' 2021-04-07 18:26:49 +08:00
Michael Shilman
3fb8153144 Core: Restore previewHead/Body presets 2021-04-07 16:51:35 +08:00
Michael Shilman
9ae3aa9c6c 6.2.4 latest.json version file 2021-04-07 12:31:00 +08:00
Michael Shilman
3219fc02fd 6.2.3 latest.json version file 2021-04-05 22:39:16 +08:00
Michael Shilman
4420f111e8 Merge branch 'next' 2021-04-05 22:19:06 +08:00
Eirik Sletteberg
841a55bd68 Don't shadow the window global variable
This snippet:

```
import { window } from 'global';
```

will let you mock window variables in Jest tests.
However, it breaks hot module reloading in Vite,
because Vite injects code snippets in top of every
file:

```
window.STUFF = 'Vite injected some HMR code here';
import { window } from 'global';
// this fails: Uncaught ReferenceError: Cannot access 'window' before initialization
```

The simple solution is to rename `window` when importing it:

```
import { window as globalWindow } from 'global';
globalWindow.alert('hello world');
```

The code works like before, but Vite will be able to
inject its code snippet without interfering with the
rest of the code.
2021-04-04 18:36:16 +02:00
Valentin Agachi
f694c269c1
Document support for stories as function
Source: https://github.com/storybookjs/storybook/issues/11181#issuecomment-674844736
2021-04-02 13:36:21 +02:00
Michael Shilman
8d9b0af39a 6.2.2 latest.json version file 2021-04-02 18:02:17 +08:00
Michael Shilman
60c2a4f570
Merge pull request #14418 from hydrosquall/patch-1
Update cli-options.md
2021-04-02 07:45:28 +08:00
Cameron Yick
e52d7d16c1
[docs] Friendly directory name for build-storybook
PR feedback
2021-04-01 15:09:49 -04:00
jonniebigodes
6d0f13548a add missing prettier start 2021-04-01 15:08:29 +01:00
jonniebigodes
8ff0a6fcc9 Essentials and addons api (snippets and content) updated 2021-03-31 20:07:21 +01:00
Cameron Yick
1b8bcff6a0
Update cli-options.md
Fix typo in `build-storybook --debug-webpack` documentation
2021-03-31 14:42:44 -04:00
Michael Shilman
0b1135e1df 6.2.1 latest.json version file 2021-03-31 12:13:38 +08:00
Michael Shilman
9367b718e5 6.2.0 latest.json version file 2021-03-31 00:14:29 +08:00
Michael Shilman
a686a99ee0 6.2.0-rc.13 next.json version file 2021-03-30 19:00:07 +08:00
Michael Shilman
1913c922b5
Merge pull request #14390 from YozhEzhi/patch-1
[Documentation]: Update my-component-story-use-globaltype.mdx.mdx
2021-03-30 18:12:09 +08:00
YozhEzhi
259b12a3a2
Update my-component-story-use-globaltype.js.mdx
https://github.com/storybookjs/storybook/issues/13602
2021-03-30 10:51:48 +03:00
YozhEzhi
a8a846bb82
Update my-component-story-use-globaltype.mdx.mdx
https://github.com/storybookjs/storybook/issues/13602
2021-03-30 10:51:25 +03:00
Michael Shilman
57fc3cd09e 6.2.0-rc.12 next.json version file 2021-03-30 11:01:09 +08:00
jonniebigodes
8b7fa34a5d
Merge pull request #14367 from storybookjs/update-hero-video-for-62
(Documentation) Found and fixed another video bug in the demo video
2021-03-29 19:01:32 +01:00
Michael Shilman
ae0e408675 6.2.0-rc.11 next.json version file 2021-03-29 16:44:38 +08:00
domyen
69329267de found and fixed another video bug 2021-03-28 11:22:40 -04:00
jonniebigodes
466c2ec083 fixes broken link in GH 2021-03-26 22:03:00 +00:00
jonniebigodes
5f064a75f0
Merge pull request #14351 from storybookjs/fix-doc-links
Fix doc links
2021-03-26 21:46:22 +00:00
jonniebigodes
fd583c0ef8
Merge pull request #14349 from storybookjs/update-hero-video-for-62
Fix video bug in documentation
2021-03-26 21:08:40 +00:00
winkerVSbecks
c48cf0537c fix preset API link 2021-03-26 09:37:28 -04:00
winkerVSbecks
7a198978a3 fix writing addons link 2021-03-26 09:37:18 -04:00
domyen
27623762ed fix video bug 2021-03-26 08:20:29 -04:00
Michael Shilman
88f6bb81bc 6.2.0-rc.10 next.json version file 2021-03-26 16:08:05 +08:00
Michael Shilman
4a0374085b
Merge pull request #14328 from storybookjs/update-hero-video-for-62
Minor docs updates: hero video, new example
2021-03-25 10:33:24 +08:00
Michael Shilman
5aaf466b7e 6.2.0-rc.9 next.json version file 2021-03-25 00:55:58 +08:00
Michael Shilman
4cbf3083c8
Merge pull request #14293 from storybookjs/url-args-special-formats
Core: Support some special values in URL args
2021-03-24 23:34:39 +08:00
domyen
7865f2b630 add world food program to example Storybook list 2021-03-24 11:20:19 -04:00
domyen
948e123fe8 update hero video for 6.2 and controls 2021-03-24 11:09:11 -04:00
Gert Hengeveld
f33175839f Docs for special URL arg formats 2021-03-24 15:12:16 +01:00
Michael Shilman
3b6e4cf5c4
Merge pull request #14316 from storybookjs/fix-color-picker
Controls: Tweaks and fixes for color control
2021-03-24 12:56:12 +08:00
Michael Shilman
9ba919d45c
Merge pull request #14325 from marksy/patch-3
Update note on cli-options.md
2021-03-24 12:38:30 +08:00
Michael Shilman
ff7bdb0d40
Merge pull request #14326 from marksy/patch-4
Update theming.md
2021-03-24 12:37:51 +08:00