Michael Shilman
fd178a0005
6.3.0-alpha.14 next.json version file
2021-04-23 10:28:14 +08:00
Chris Butler
1b2799a2b0
clarify that padded is the default Component layout setting
2021-04-22 09:15:19 -04:00
Michael Shilman
75e2b73964
6.3.0-alpha.13 next.json version file
2021-04-21 10:54:59 +08:00
Michael Shilman
05e5a5c750
6.3.0-alpha.12 next.json version file
2021-04-20 02:09:26 +08:00
Michael Shilman
076a4db5a7
6.3.0-alpha.11 next.json version file
2021-04-19 22:27:29 +08:00
Michael Shilman
c8f9a9564a
6.3.0-alpha.10 next.json version file
2021-04-18 21:29:07 +08:00
Michael Shilman
08fb2cb926
Merge pull request #14640 from huyenltnguyen/docs/minor-correction
...
docs: correct typo and formatting
2021-04-18 18:08:29 +08:00
Michael Shilman
fc3e0511ba
Update docs/snippets/common/component-story-mdx-argtypes.mdx.mdx
2021-04-18 18:07:56 +08:00
Huyen Nguyen
d68d4089fb
docs: correct typo and formatting
2021-04-18 04:39:54 +07:00
Patrick Lafrance
75002eb165
Fixed link to ShareGate Orbit DS
2021-04-17 15:21:20 -04:00
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