peterpeterparker
def4fb743c
docs: missing dash in place-hold.it url
2021-04-17 14:25:08 +02:00
Michael Shilman
bd88f9e22d
6.3.0-alpha.9 next.json version file
2021-04-17 05:35:19 +08:00
Michael Shilman
72519dec2f
6.3.0-alpha.8 next.json version file
2021-04-15 22:34:53 +08:00
Andriy Panas
777cd96a48
Fix link to babel.ts source
2021-04-15 13:51:07 +02:00
Michael Shilman
9eb3b03b4c
Apply suggestions from code review
2021-04-15 09:47:01 +08:00
jonniebigodes
047c28afab
Adjust the styled-component get theme snippet
2021-04-14 22:41:13 +01:00
Michael Shilman
d43f1e54cb
6.3.0-alpha.7 next.json version file
2021-04-14 10:32:16 +08:00
Norbert de Langen
fd68d51d5b
Merge pull request #14572 from jh3y/next
...
docs: update code snippets for writing an addon
2021-04-13 16:43:07 +02:00
Michael Shilman
ac693b3943
6.3.0-alpha.6 next.json version file
2021-04-13 16:41:26 +08:00
Michael Shilman
4355ca92c1
Merge pull request #14532 from lordVelisch/feature/add_angular_snippet_args
...
docs: add angular code snippet for using args
2021-04-13 08:39:03 +08:00
Sam Kirkland
1839e3b3cb
globalTypes with toolbar requires addon-toolbars
...
Adding a note that @storybook/addon-toolbars is required to use globalTypes to define toolbars.
Had a really tough time finding why the documentation wasn't working properly. It was because I updated from a old version that didn't have @storybook/addon-essentials.
2021-04-12 15:11:14 -05:00
jh3y
cd0b4cc26b
docs: update code snippets for writing an addon
2021-04-12 20:03:11 +01:00
Kaelig Deloumeau-Prigent
efa97de36e
Fix link to Shopify Polaris's Storybook
2021-04-12 11:04:42 -07:00
Tanya Mahajan
209082c832
Update introduction docs
2021-04-12 09:01:16 +05:30
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
Valentin Mayer
42edf6536e
docs: add angular code snippet for using args
2021-04-09 13:40:17 +02: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